• I am trying to resize the logo in the header of the site I am building by using custom CSS. I cannot seem to find the right ID name to get it to change. Here is the CSS I have tried:

    #header {height:100px;}
    #logo img {padding: 0 0 0 0px; height:100px; float:left;}

    https://www.11floor.com/fsa

Viewing 1 replies (of 1 total)
  • Make it:

    #header {height:100px;}
    #logo img {padding: 0 0 0 0px; height:100px; float:left;max-height:100px}

    And your image will be 100px high. On testing this does make it overlap the banner slider but it does make it 100px as requested.

Viewing 1 replies (of 1 total)
  • The topic ‘Header logo size’ is closed to new replies.