Support » Themes and Templates » Layout off somehow

  • Resolved digiscr1

    (@digiscr1)


    My header is not centered for one thing, and my sidebar is at the bottom. I have my page set at a width of 720px because that’s what my header is. Can someone point me in the right direction. I’m new to css and php. I’m a old html girl lol.

    http://www.digiscraplife.com/blog

Viewing 4 replies - 1 through 4 (of 4 total)
  • looks fine to me on my Mac with Safari.

    Assume your having issues with IE6

    this line would cause probs:

    #sidebar {
     margin-left:545px;
     padding:20px 0pt 10px;
     width:190px;
    }

    Best to avoid giving width and a margin or padding value if considering IE6.

    Change to:

    #sidebar {
     float:right;
     padding:20px 0pt 10px;
     width:190px;
    }

    the float removes the need for the big margin (but may introduce other prbs..! )

    Thread Starter digiscr1

    (@digiscr1)

    thanks! I was looking at it on IE6. I upgraded to IE8 and now we are set!

    well thats one way to solve the problem….

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Layout off somehow’ is closed to new replies.