brownday,
In your home page code find the line
<div id="s1" class="pics" style="position: relative; overflow: hidden;">
and remove the “position: relative;” code. And in your css file find the #featured-area tag and change it from:
#featured-area { background: #ffffff url('images/featured-bg.jpg') no-repeat; height: 286px; position: relative; padding: 9px 0px 0px; z-index: 1; }
to
#featured-area { background: #ffffff url('images/featured-bg.jpg') no-repeat; height: 286px; float: left; padding: 9px 0px 0px; z-index: 1; }
That should do it.
In your CSS:
– remove padding-left: 340px; from #content
– remove padding-left: 340px; and float: left; from #footer-widgets-wrap
– then add margin: 0 auto; to both #content and #footer-widgets-wrap
thanks Twelvefootsnowman that fixed my home page but the rest of my pages are still messed up. any idea?
Can you give us an example of the other pages being messed up? I had a quick look and they looked okay to me.