Announcement

Collapse
No announcement yet.

Full width logo

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Additional.css Full width logo

    This will be able to display a full width logo
    Width defaults to 1200px

    Code:
    @media only screen and (max-height: 480px) {
        #header .site-logo img {
            max-height:none;
        }
    }
    
    @media only screen and (max-height: 360px) {
        #header .site-logo img {
            max-height:none;
        }
    }
    
    @media only screen and (max-width: 360px) {
        #header .site-logo img {
            max-width:344px;
        }
    
        #header .site-logo.header-edit-box {
            text-align: center;
        }
    }
    
    @media only screen and (max-height: 320px) {
        #header .site-logo img {
            max-height:none;
        }
    }
    
    @media only screen and (max-width: 320px) {
        #header .site-logo.header-edit-box {
            text-align: center;
        }
    
        #header .site-logo img {
            max-width: 304px;
        }
Working...
X