Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Width:100% problem with IE

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #28370
    Preeminent
    Participant

    Hey all,
    I am having a problem with something in IE7. I’m hoping someone can open my eyes to how to fix.
    Here is a sample: http://www.originallyricsformusic.com/joindemo.html
    The (#verytop) div should be 100% across the screen. I have it set to width:100% obviously, but it is not doing so in Internet explorer 7. Of course works fine in other browsers. Any suggestions? Thanks in advance!

    #72310
    xhtmlit
    Member

    Hi there,

    From what I actually see is that your "verytop" div isn’t going across.. I would take the "positioning" out of it;

    Original Code:

    Code:
    #verytop{
    width:100%;
    height:13px;
    position:absolute;
    top:0;
    background: url(“topbg.png”);
    background-repeat:repeat-x;
    }

    Suggestion Code:

    Code:
    #verytop{
    width:100%;
    height:13px;
    top:0;
    background: url(“topbg.png”);
    background-repeat:repeat-x;
    }

    Give that a swirl.. Let us know. Thank you!

    #72312
    xhtmlit
    Member

    Hi,

    Pretty much, your welcome :)

    Thank you,

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.