![]() |
|
|
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. |
|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
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 |
|
|||
|
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 |
|
|||
|
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; >>> } |
|
|||
|
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. |
|
|||
|
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 |
|
|||
|
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; } |
|
|||
|
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 |
|
|||
|
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 |
|
|||
|
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 |
|
|||
|
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) |
![]() |
|
| Thread Tools | Search this Thread |
| Display Modes | |
|
|