im usually really good with CSS and HTML but the scroll box is killing me help?

  • Thread starter Thread starter equineriderfourlife
  • Start date Start date
E

equineriderfourlife

Guest
This is the code I have
< div style="position:absolute; top:450; left:55; width:260; height:875; z-index:3; border:#000000 2px dashed" >
text
< /div>

without the spaces obviously and i need the z-index as i am using a full layout background made. the website is freewebs.com /emmasdesigns/ index.htm
No spaces.

If you wish to video. Im talking about the Whats going on in my life section. I can shrink or extend the height but it just moves the dashed line no the text.
 
I dont exactly understand what you are asking, but there are two things I notice:

<div style="position:absolute; top:450; left:55; width:260; height:875; z-index:3; border:#000000 2px dashed" >
text
</div>

For the code you have above, you forgot a couple things. Namely the function to make it scroll and also the border code is missing something.

<div style="position:absolute; top:450px; left:55px; width:260px; height:875px; z-index:3px; border:2px dashed #000000; overflow:auto;" >
text
</div>

Dont forget to add px as well. Otherwise this wont validate :3

I hope that helps a little bit.
 
Back
Top