Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Community Forums
 Community Discussions (All other subjects)
 Scroll bar on left hand side?
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

silent_frosty
Junior Member

USA
178 Posts

Posted - 17 September 2003 :  22:04:41  Show Profile  Send silent_frosty an ICQ Message  Send silent_frosty a Yahoo! Message
Is this possible? I seem to remember seeing it on a few sites. Is there a script that can enable this? Just wondering becuase I was messing around in Google and typed in elgoog and Googles homepage came up, but all in reverse (mirrored), so the scroll bar was on the left.

Life is a waste of time. Time is a waste of life. So get wasted all of the time and have the time of your life.

dayve
Forum Moderator

USA
5820 Posts

Posted - 17 September 2003 :  22:13:27  Show Profile  Visit dayve's Homepage
yes it is possible... I've seen it too on foreign web sites (India and such). looking on Google right now because I don't know what the CSS is for it.

Go to Top of Page

dayve
Forum Moderator

USA
5820 Posts

Posted - 17 September 2003 :  22:20:25  Show Profile  Visit dayve's Homepage
okay, you can do this in several tags like <textarea> or <body>

<body dir="rtl">


rtl means right to left and will not only move the scroll bar to the left, but move all your text and other items to the right (in a mirror fashion, but he words are not backwords). With some clever <div> tags you can get the text on the left along with the scroll bar.

Go to Top of Page

silent_frosty
Junior Member

USA
178 Posts

Posted - 17 September 2003 :  22:31:32  Show Profile  Send silent_frosty an ICQ Message  Send silent_frosty a Yahoo! Message
Yeah, I was surfing around alltooflat.com's site (that made elgooG mirror), and found this-

<BODY dir=rtl>
<DIV dir=ltr>
...
</DIV>
</BODY>

same as what you said, but what is the <DIV dir=ltr> part mean? is it so the rest of the page is normal?>

Life is a waste of time. Time is a waste of life. So get wasted all of the time and have the time of your life.

Edited by - silent_frosty on 17 September 2003 22:32:02
Go to Top of Page

dayve
Forum Moderator

USA
5820 Posts

Posted - 17 September 2003 :  22:38:57  Show Profile  Visit dayve's Homepage
the <div dir=ltr> part is Left-To-Right. Like I was stating earlier, if you put the <body dir=rtl> then not only is your toolbar on the left side, but your website text and images are basically right justified. Putting the content of your site in a <div dir=ltr> will keep the scroll bar on the left but also keep your content left justified.

Go to Top of Page

silent_frosty
Junior Member

USA
178 Posts

Posted - 17 September 2003 :  22:42:43  Show Profile  Send silent_frosty an ICQ Message  Send silent_frosty a Yahoo! Message
Ok, sounds cool, maybe I'll implement this in my site Time for bed now though , test tomorrow in Chem.

Life is a waste of time. Time is a waste of life. So get wasted all of the time and have the time of your life.

Edited by - silent_frosty on 17 September 2003 22:44:12
Go to Top of Page

silent_frosty
Junior Member

USA
178 Posts

Posted - 18 September 2003 :  15:49:14  Show Profile  Send silent_frosty an ICQ Message  Send silent_frosty a Yahoo! Message
Ok, I tried to put it on my site and I got the srollbar put on OK, but all the content SOME of the content is right justified and some isnt... any ideas?
this is the code i used (in the <body></body> tags)
<body dir="rtl">
<div dir="ltr">
</div>

P.S. If you want to see what I mean, you can go to my site Here or in my sig

Life is a waste of time. Time is a waste of life. So get wasted all of the time and have the time of your life.

Edited by - silent_frosty on 18 September 2003 16:18:41
Go to Top of Page

silent_frosty
Junior Member

USA
178 Posts

Posted - 18 September 2003 :  16:38:50  Show Profile  Send silent_frosty an ICQ Message  Send silent_frosty a Yahoo! Message
It seems that the DIV tags doon't really do much of anything though when I mess around with them. So i looked at the elgooG code, but its to jumbled up for me to really get anything out of it. Tried searching, but couldnt even find another page with a left handed scroll bar :(...are there some other tags that i could use to make all the conent right justified (or mmiddle, or whereever they used to be...)

Life is a waste of time. Time is a waste of life. So get wasted all of the time and have the time of your life.
Go to Top of Page

brujo
Average Member

USA
602 Posts

Posted - 18 September 2003 :  16:44:45  Show Profile  Visit brujo's Homepage
people may not look for it though....

I know it is being novel and fun and all - but unless I had read the thread I would never have looked....

maybe a good compromise between fun and use - maybe to have scrollbars on both sides ??

but I dont know if this is possible - probably not

brujo
Go to Top of Page

silent_frosty
Junior Member

USA
178 Posts

Posted - 18 September 2003 :  16:47:04  Show Profile  Send silent_frosty an ICQ Message  Send silent_frosty a Yahoo! Message
quote:
Originally posted by brujo

maybe a good compromise between fun and use - maybe to have scrollbars on both sides ??




LOL, not many people ever go to my site, so I mainly use it for a testing page. But that double scroll bar thing sounds cool, maybe someone knows if it really is possible
**A few minutes later**
I was talkin to a friend, and he said that its not possible with just HTML, but possible in JS, is this a possiblility?

**Another Update**
I found some CSS to use, but it still moves some of the content...
<style type="text/css">
body
{
direction:rtl;
}
</style>

Life is a waste of time. Time is a waste of life. So get wasted all of the time and have the time of your life.

Edited by - silent_frosty on 18 September 2003 17:21:37
Go to Top of Page

silent_frosty
Junior Member

USA
178 Posts

Posted - 18 September 2003 :  21:07:37  Show Profile  Send silent_frosty an ICQ Message  Send silent_frosty a Yahoo! Message
I've been doing some searchin on Google for a long time, and I don't really think that having two scrollbars is impossible, but not very feasible i think. So, if someone could help me sort out the problem that get created when you put the scrollbar on the left, it would be greatly appreciated. Dayve said something along the lines of adding some DIV's...

Oh God, I'm a retard ....sometimes, you just need to take a minute and look at your code . When I looked I had this-

<body>
<body dir="rtl">
<div dir="ltr">
</div>
**HTML for page here**
</body>

this was in the body tags....like it was supposed to be...i forgot that you need to have the </div> tag after all of your code

so now its like this
<body>
<body dir="rtl">
<div dir="ltr">
**HTML code here**
</div>
</body>

lol, ill really remember to read over my code whenever i have a problem from now on i think
Works like a charm now: Look at it here

Life is a waste of time. Time is a waste of life. So get wasted all of the time and have the time of your life.

Edited by - silent_frosty on 18 September 2003 21:28:55
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.24 seconds. Powered By: Snitz Forums 2000 Version 3.4.07