Welcome to the { mindfrost82.com } forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Software > Mozilla Software > FireFox

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 04-08-2008, 09:36 AM
Herb
 
Posts: n/a
Re: Sidebars

On 30.06.2006 08:20 UK Time, Rob wrote:
> Herb wrote:
>
>> Is it possible to move sidebars to the right of the screen, and if not,
>> are there strong/good technical reasons why it isn't possible?
>>

>
> Straightforward, once you find out how ;-/
>
> [from http://www.mozilla.org/support/firefox/tips]
>
> Put the following code in the userChrome.css file in the chrome folder under
> your profile:
>
> /* Place the sidebar on the right edge of the window */
> window > hbox {
> direction:rtl;
> }
> window > hbox > * {
> direction:ltr;
> }



I just tried this (better late than never :-) ), but it doesn't work,
i.e. the sidebar is still on the left when I restart FF.

Any suggestions?

--
Herbert Eppel
www.HETranslation.co.uk
Reply With Quote
  #2 (permalink)  
Old 04-09-2008, 06:31 AM
Herb
 
Posts: n/a
Re: Sidebars

On 08.04.2008 09:36 UK Time, Herb wrote:
> On 30.06.2006 08:20 UK Time, Rob wrote:
>> Herb wrote:
>>
>>> Is it possible to move sidebars to the right of the screen, and if not,
>>> are there strong/good technical reasons why it isn't possible?
>>>

>>
>> Straightforward, once you find out how ;-/
>>
>> [from http://www.mozilla.org/support/firefox/tips]
>>
>> Put the following code in the userChrome.css file in the chrome folder
>> under
>> your profile:
>>
>> /* Place the sidebar on the right edge of the window */
>> window > hbox {
>> direction:rtl;
>> }
>> window > hbox > * {
>> direction:ltr;
>> }

>
>
> I just tried this (better late than never :-) ), but it doesn't work,
> i.e. the sidebar is still on the left when I restart FF.


Any ideas?

--
Herbert Eppel
www.HETranslation.co.uk
Reply With Quote
  #3 (permalink)  
Old 04-09-2008, 07:35 AM
Sonny
 
Posts: n/a
Re: Sidebars


"Herb" <HE@UK> wrote in message
news:LpWdne21G9dSyWHanZ2dnUVZ_gydnZ2d@mozilla.org. ..
> On 08.04.2008 09:36 UK Time, Herb wrote:
>> On 30.06.2006 08:20 UK Time, Rob wrote:
>>> Herb wrote:
>>>
>>>> Is it possible to move sidebars to the right of the screen, and if not,
>>>> are there strong/good technical reasons why it isn't possible?
>>>>
>>>
>>> Straightforward, once you find out how ;-/
>>>
>>> [from http://www.mozilla.org/support/firefox/tips]
>>>
>>> Put the following code in the userChrome.css file in the chrome folder
>>> under
>>> your profile:
>>>
>>> /* Place the sidebar on the right edge of the window */
>>> window > hbox {
>>> direction:rtl;
>>> }
>>> window > hbox > * {
>>> direction:ltr;
>>> }

>>
>>
>> I just tried this (better late than never :-) ), but it doesn't work,
>> i.e. the sidebar is still on the left when I restart FF.

>
> Any ideas?
>
> --
> Herbert Eppel
> www.HETranslation.co.uk


window > hbox {
>>> direction:rtl!important;
>>> }
>>> window > hbox > * {
>>> direction:ltr!important;
>>> }



Reply With Quote
  #4 (permalink)  
Old 04-09-2008, 07:47 AM
Sonny
 
Posts: n/a
Re: Sidebars


"Sonny" <srazzano@gmail.com> wrote in message
news:TYidnVywQ75c_mHanZ2dnUVZ_uSgnZ2d@mozilla.org. ..
>
> "Herb" <HE@UK> wrote in message
> news:LpWdne21G9dSyWHanZ2dnUVZ_gydnZ2d@mozilla.org. ..
>> On 08.04.2008 09:36 UK Time, Herb wrote:
>>> On 30.06.2006 08:20 UK Time, Rob wrote:
>>>> Herb wrote:
>>>>
>>>>> Is it possible to move sidebars to the right of the screen, and if
>>>>> not,
>>>>> are there strong/good technical reasons why it isn't possible?
>>>>>
>>>>
>>>> Straightforward, once you find out how ;-/
>>>>
>>>> [from http://www.mozilla.org/support/firefox/tips]
>>>>
>>>> Put the following code in the userChrome.css file in the chrome folder
>>>> under
>>>> your profile:
>>>>
>>>> /* Place the sidebar on the right edge of the window */
>>>> window > hbox {
>>>> direction:rtl;
>>>> }
>>>> window > hbox > * {
>>>> direction:ltr;
>>>> }
>>>
>>>
>>> I just tried this (better late than never :-) ), but it doesn't work,
>>> i.e. the sidebar is still on the left when I restart FF.

>>
>> Any ideas?
>>
>> --
>> Herbert Eppel
>> www.HETranslation.co.uk

>
> window > hbox {
>>>> direction:rtl!important;
>>>> }
>>>> window > hbox > * {
>>>> direction:ltr!important;
>>>> }

>
>


also if you know the width of your sidebar, use this to auto hide it:
window > hbox {
direction: rtl !important;
}
window > hbox > * {
direction: ltr !important;
}
#sidebar-box {
margin-right: -197px !important;
}
#sidebar-box:hover {
margin-right: 0px !important;
}
Replace the -197px with the width of your sidebar minus one as a negative
number. ie, my sidebar width is 198px, hence the -197px for margin-right.


Reply With Quote
  #5 (permalink)  
Old 04-09-2008, 07:50 AM
Herb
 
Posts: n/a
Re: Sidebars

On 09.04.2008 07:35 UK Time, Sonny wrote:
> "Herb" <HE@UK> wrote in message
> news:LpWdne21G9dSyWHanZ2dnUVZ_gydnZ2d@mozilla.org. ..
>> On 08.04.2008 09:36 UK Time, Herb wrote:
>>> On 30.06.2006 08:20 UK Time, Rob wrote:
>>>> Herb wrote:
>>>>
>>>>> Is it possible to move sidebars to the right of the screen, and if not,
>>>>> are there strong/good technical reasons why it isn't possible?
>>>>>
>>>> Straightforward, once you find out how ;-/
>>>>
>>>> [from http://www.mozilla.org/support/firefox/tips]
>>>>
>>>> Put the following code in the userChrome.css file in the chrome folder
>>>> under
>>>> your profile:
>>>>
>>>> /* Place the sidebar on the right edge of the window */
>>>> window > hbox {
>>>> direction:rtl;
>>>> }
>>>> window > hbox > * {
>>>> direction:ltr;
>>>> }
>>>
>>> I just tried this (better late than never :-) ), but it doesn't work,
>>> i.e. the sidebar is still on the left when I restart FF.

>> Any ideas?
>>
>> --
>> Herbert Eppel
>> www.HETranslation.co.uk

>
> window > hbox {
>>>> direction:rtl!important;
>>>> }
>>>> window > hbox > * {
>>>> direction:ltr!important;
>>>> }


I added !important as your reply seems to suggest (the quoting got a
little muddled for some reason, but it still doesn't work :-(

--
Herbert Eppel
www.HETranslation.co.uk
Reply With Quote
  #6 (permalink)  
Old 04-09-2008, 08:15 AM
Sonny
 
Posts: n/a
Re: Sidebars


"Herb" <HE@UK> wrote in message
news:IpGdnZ5nDdq2-mHanZ2dnUVZ_v_inZ2d@mozilla.org...
> On 09.04.2008 07:35 UK Time, Sonny wrote:
>> "Herb" <HE@UK> wrote in message
>> news:LpWdne21G9dSyWHanZ2dnUVZ_gydnZ2d@mozilla.org. ..
>>> On 08.04.2008 09:36 UK Time, Herb wrote:
>>>> On 30.06.2006 08:20 UK Time, Rob wrote:
>>>>> Herb wrote:
>>>>>
>>>>>> Is it possible to move sidebars to the right of the screen, and if
>>>>>> not,
>>>>>> are there strong/good technical reasons why it isn't possible?
>>>>>>
>>>>> Straightforward, once you find out how ;-/
>>>>>
>>>>> [from http://www.mozilla.org/support/firefox/tips]
>>>>>
>>>>> Put the following code in the userChrome.css file in the chrome folder
>>>>> under
>>>>> your profile:
>>>>>
>>>>> /* Place the sidebar on the right edge of the window */
>>>>> window > hbox {
>>>>> direction:rtl;
>>>>> }
>>>>> window > hbox > * {
>>>>> direction:ltr;
>>>>> }
>>>>
>>>> I just tried this (better late than never :-) ), but it doesn't work,
>>>> i.e. the sidebar is still on the left when I restart FF.
>>> Any ideas?
>>>
>>> --
>>> Herbert Eppel
>>> www.HETranslation.co.uk

>>
>> window > hbox {
>>>>> direction:rtl!important;
>>>>> }
>>>>> window > hbox > * {
>>>>> direction:ltr!important;
>>>>> }

>
> I added !important as your reply seems to suggest (the quoting got a
> little muddled for some reason, but it still doesn't work :-(
>
> --
> Herbert Eppel
> www.HETranslation.co.uk


Try this:
#browser {
-moz-box-direction: reverse !important;
}


Reply With Quote
  #7 (permalink)  
Old 04-09-2008, 09:35 AM
squaredancer
 
Posts: n/a
Re: Sidebars

On 09.04.2008 08:50, CET - what odd quirk of fate caused Herb to
generate the following:? :
> On 09.04.2008 07:35 UK Time, Sonny wrote:
>
>> "Herb" <HE@UK> wrote in message
>> news:LpWdne21G9dSyWHanZ2dnUVZ_gydnZ2d@mozilla.org. ..
>>
>>> On 08.04.2008 09:36 UK Time, Herb wrote:
>>>
>>>> On 30.06.2006 08:20 UK Time, Rob wrote:
>>>>
>>>>> Herb wrote:
>>>>>
>>>>>
>>>>>> Is it possible to move sidebars to the right of the screen, and if not,
>>>>>> are there strong/good technical reasons why it isn't possible?
>>>>>>
>>>>>>
>>>>> Straightforward, once you find out how ;-/
>>>>>
>>>>> [from http://www.mozilla.org/support/firefox/tips]
>>>>>
>>>>> Put the following code in the userChrome.css file in the chrome folder
>>>>> under
>>>>> your profile:
>>>>>
>>>>> /* Place the sidebar on the right edge of the window */
>>>>> window > hbox {
>>>>> direction:rtl;
>>>>> }
>>>>> window > hbox > * {
>>>>> direction:ltr;
>>>>> }
>>>>>
>>>> I just tried this (better late than never :-) ), but it doesn't work,
>>>> i.e. the sidebar is still on the left when I restart FF.
>>>>
>>> Any ideas?
>>>
>>> --
>>> Herbert Eppel
>>> www.HETranslation.co.uk
>>>

>> window > hbox {
>>
>>>>> direction:rtl!important;
>>>>> }
>>>>> window > hbox > * {
>>>>> direction:ltr!important;
>>>>> }
>>>>>

>
> I added !important as your reply seems to suggest (the quoting got a
> little muddled for some reason, but it still doesn't work :-(
>
>


I think that there's a SPACE missing !

reg
Reply With Quote
  #8 (permalink)  
Old 04-09-2008, 10:27 AM
Herb
 
Posts: n/a
Re: Sidebars

On 09.04.2008 09:35 UK Time, squaredancer wrote:

> I think that there's a SPACE missing !


Where?

Does it work for you?

--
Herbert Eppel
www.HETranslation.co.uk
Reply With Quote
  #9 (permalink)  
Old 04-09-2008, 11:25 AM
Herb
 
Posts: n/a
Re: Sidebars

On 09.04.2008 08:15 UK Time, Sonny wrote:

> Try this:
> #browser {
> -moz-box-direction: reverse !important;
> }


Success! 8-)

Thank you.

--
Herbert Eppel
www.HETranslation.co.uk
Reply With Quote
  #10 (permalink)  
Old 04-09-2008, 01:09 PM
Melchert Fruitema
 
Posts: n/a
Re: Sidebars

On 09-04-2008 12:25 CET, Herb composed this enchanting statement:
> On 09.04.2008 08:15 UK Time, Sonny wrote:
>> Try this:
>> #browser {
>> -moz-box-direction: reverse !important;
>> }

> Success! 8-)
>
> Thank you.
>

Herb, could you show us the final set of statements that you've added to
'userChrome.css' for this feature, please?

--
Kind regards,
Melchert

(MacOS 10.3.9 / Firefox 2.0, Thunderbird 2.0)
Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Software > Mozilla Software > FireFox


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 11:19 AM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0


Sponsors:
Jigsaw | Currency Converter | Ringtones | Credit Check | Remortgages



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114