what the code to make a scroll box ad how to you put it in?
Printable View
what the code to make a scroll box ad how to you put it in?
o.0 for a forum or for myspace?
like an iframe?
its for a website like the home page is it possible to have text in a scrolling box for like news or something?
How is your page coded? Do you use CSS?
If you do add this the section you want to scroll
If that means nothing no you then post a link to your page and I will have a look and let you know exactly were to place the code.Code:overflow: scroll
Paul
thankyou, yeah im using css.
Just add that line in were you have your width: and height: specs and it should work fine on all browsers, obviously you will need to have enough content as to make sure there is a reason for the scroll feature to appear.
is it possible to only have a scroll on the right side moving up and down not side to side?
stick this in your css:
body { overflow-x: hidden; }
That should hide your horizontal bar...
body { overflow-y: hidden; }
That does your vertical bar.
body { overflow: hidden; }
And this does both.
thanks solaris :]