• Mike3853

    (@mike3853)


    Hello everyone!
    I have looked at a lot of posts about this similar issue but I still can’t figure out what CSS to change or add to make my header background transparent.

    I want to make this header background transparent:
    my site is here: http://www.msflights.net/
    It’s a transparent .png image but there is a background behind it that I cant find out how to turn off.

    I would really love some help with how to do this, its been driving me nuts!
    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Mat Lipe

    (@mat-lipe)

    Hello,

    The problem you are running into is background actually covers the entire page.
    You can solve this by removing the background color from the page and adjusting the main to compensate.

    Like so: Add the following to your style.css file.

    #main {
       background: white;
       float: left;
       width: 1000px;
       padding-top: 10px;
       margin-top: -10px;
    }

    Remove the Following from you style.css file.

    #page {
         background: white;
    }

    Hope this helps.

    Cheers

    Thread Starter Mike3853

    (@mike3853)

    worked great! thanks so much, I owe you big time! I haven’t uploaded the changes yet…

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Header Issue…’ is closed to new replies.