Jrfan888
04-26-2004, 11:46 PM
In my CSS, I set for the scrollbar to be on the other side of the page and found out that it flips my whole page, meaning my text too. Is there any way I can just flip the scrollbar? I'm finding it really hard to type...lol.
-Thanks!
starlet
04-27-2004, 12:03 AM
Right after the body tag put...
<DIV style="direction: rtl;">
Alllllll content here
</DIV>
Basically surround all your content with the code to re-reverse it.
Jrfan888
04-27-2004, 03:26 AM
When I tried that, it just reversed my content, not the scrollbar. I wanted my scrollbar to be on the other side of the page, not the content...or else I'm doing something wrong...?
salomeyasobko
04-27-2004, 03:30 AM
it should've worked.. but try this code- add it to your CSS:
body {direction:rtl}
Jrfan888
04-27-2004, 03:41 AM
it should've worked.. but try this code- add it to your CSS:
body {direction:rtl}
I had that in my CSS, but it reverses my content too, all I want is the scrollbar to be on the left. When it reverses the content, the words and punctuation marks appear out of order, I guess from the reverse. Does it matter that it's in an I-Frame?
kittycat
04-27-2004, 09:37 PM
starlet's code was right, just the wrong direction :P
<DIV style="direction: ltr;">
Alllllll content here
</DIV>
That should work, make sure to get all your page content (just the stuff in the body) inside the div for it to be the right way.
Jrfan888
04-28-2004, 12:21 AM
ooohhh, yay! That worked =) Thanks!