Skip to:
Content

BuddyPress.org

Ticket #8666: #8666.diff

File #8666.diff, 986 bytes (added by himanshuc, 3 years ago)

Image used in the headline section is not responsive so we have to hide it and add css for responsive design.

  • buddypress.org/public_html/wp-content/themes/bb-base/style.css

    diff --git a/buddypress.org/public_html/wp-content/themes/bb-base/style.css b/buddypress.org/public_html/wp-content/themes/bb-base/style.css
    index e42780aee..6709a5615 100644
    a b body.trac .attachment { 
    18011801        }
    18021802}
    18031803
     1804@media screen and (max-width:980px) {
     1805        #headline-inner{
     1806                position: unset;
     1807                padding: 50px 0;
     1808                height: unset;
     1809        }
     1810        h2.graphic{
     1811                position: unset;
     1812                width: unset;
     1813                height: unset;
     1814                padding: 0 10px;
     1815                margin-bottom: 12px;
     1816        }
     1817        #headline-inner p{
     1818                position: unset;
     1819                width: unset;
     1820                height: unset;
     1821                padding: 0 10px 16px;
     1822                margin-bottom: 1em;
     1823        }
     1824        #headline-inner div img{
     1825                position: unset;
     1826                display: none;
     1827        }
     1828        #big-demo-button{
     1829                position: unset;
     1830                margin-left: 10px;
     1831        }
     1832}
     1833@media screen and (max-width:600px){
     1834        #big-demo-button{
     1835                font-size: 1.4em;
     1836        }
     1837}
     1838 No newline at end of file