Getting rid of the horizontal scrollbar {SOLVED}

Oct 06, 2008 18:49


Hi I'm new to this whole CSS thing and an absolute noob on it ( Read more... )

page:size

Leave a comment

Comments 2

av8rmike October 6 2008, 12:32:16 UTC
I'm assuming that even though your arrow in the picture is pointing to the vertical scrollbar, you mean the horizontal one?
Replace this:
#header-content-inner {
position: absolute;
top: 405px;
left: 270px;
}
with this:
#header-content-inner {
margin: 405px 0 0 270px;
}
You may have to tweak the numbers a little if it's not right.

Reply

eternalnightday October 7 2008, 01:47:08 UTC
Ah yes! Thankyou so much!
*blushes* sorry about the arrow thing... I was trying to point the navy blue space *blushes* kind of dumb of me I know....
I'm forever grateful for your help. So thanks!
:D:D:D

Reply


Leave a comment

Up