• hello.

    I have created a custom header by creating a new class.
    n=but the header width is not fitting. it is a little small.
    i have madw width 100%
    still it is same in all browsers

    thanks in advance

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’ve looked at the Header and it fits all the way across on my pc.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Depends on your monitor size, but the reason it’s not working @monasinha9 is because the syntax of the CSS is wrong.
    You have this:

    
    #page header a.logo img {
        width: 100%
        height: auto;
    }
    

    Whereas it should be this:

    
    #page header a.logo img {
        width: 100%;
        height: auto;
    }
    

    (The semicolon)

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘header image not fitting the total browser width’ is closed to new replies.