alternative to classic theme restore extension

User Help for Mozilla Firefox
jsal0318
Posts: 855
Joined: March 5th, 2008, 8:57 am

alternative to classic theme restore extension

Post by jsal0318 »

Is there an alternative to classic theme restore extension that will enable tabs bar to stay beneath the bookmarks bar after November as the extension classic theme restore will no longer work? thx
User avatar
Reflective
Posts: 2283
Joined: February 15th, 2007, 11:13 am

Re: alternative to classic theme restore extension

Post by Reflective »

Open Notepad and then copy/paste the following code:

Code: Select all

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

#TabsToolbar {
-moz-box-ordinal-group: 2;
}
#nav-bar {
border-top-width: 0px !important;
}
Save is as userChrome.css and then place it in a folder called chrome located in your Firefox Profile. If the chrome folder isn't present create a folder by that name and then copy or move the userChrome.css file to that folder. To find your profile hit Windows key + R and then copy/paste the following string and click OK %APPDATA%\Mozilla\Firefox\Profiles

To test it disable Classic Theme Restorer and restart Firefox.
jsal0318
Posts: 855
Joined: March 5th, 2008, 8:57 am

Re: alternative to classic theme restore extension

Post by jsal0318 »

i will try it thx... where would i place this in chrome as well plz?
jsal0318
Posts: 855
Joined: March 5th, 2008, 8:57 am

Re: alternative to classic theme restore extension

Post by jsal0318 »

it moved it but not under the bookmarks toolbar. it is currently above the url bar. Thank you so very much. Much appreciated.
Brummelchen
Posts: 4480
Joined: March 19th, 2005, 10:51 am

Re: alternative to classic theme restore extension

Post by Brummelchen »

it should be

Code: Select all

/* AGENT_SHEET */
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

...
agent sheet is mandatory when crewing on firefox itself.

get stylish extension to use css ode instant and not only after restart (same for changes)
jsal0318
Posts: 855
Joined: March 5th, 2008, 8:57 am

Re: alternative to classic theme restore extension

Post by jsal0318 »

Brummelchen wrote:it should be

Code: Select all

/* AGENT_SHEET */
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

...
agent sheet is mandatory when crewing on firefox itself.

get stylish extension to use css ode instant and not only after restart (same for changes)
how do i move it below bookmarks toolbar though? thx
User avatar
Aris
Posts: 3248
Joined: February 27th, 2011, 10:14 am

Re: alternative to classic theme restore extension

Post by Aris »

As long as userChrome.css is supported by Firefox 57+ we can move tabs toolbar below navigation and bookmarks toolbars the same way Classic Theme Restorer does now.

Promo:
Image
jsal0318
Posts: 855
Joined: March 5th, 2008, 8:57 am

Re: alternative to classic theme restore extension

Post by jsal0318 »

Aris wrote:As long as userChrome.css is supported by Firefox 57+ we can move tabs toolbar below navigation and bookmarks toolbars the same way Classic Theme Restorer does now.

Promo:
Image
where can i get this version now plz? Also, is there a way to move tabs in chrome as well? If yes, how plz? thx
User avatar
Aris
Posts: 3248
Joined: February 27th, 2011, 10:14 am

Re: alternative to classic theme restore extension

Post by Aris »

This is css code from CTR I modified and applied through userChrome.css on current Fx57 Nightly builds. It is not public yet, because it is not ready to be used, just some tests.
jsal0318
Posts: 855
Joined: March 5th, 2008, 8:57 am

Re: alternative to classic theme restore extension

Post by jsal0318 »

So how do i get the tabs bar below my bookmarks bar using the above code then? thx all
User avatar
DanRaisch
Moderator
Posts: 127186
Joined: September 23rd, 2004, 8:57 pm
Location: Somewhere on the right coast

Re: alternative to classic theme restore extension

Post by DanRaisch »

The instructions for using the code to get your toolbar/location bar/bookmark bar in the order you want was posted by Reflective above.
Reflective wrote:Open Notepad and then copy/paste the following code:

Code: Select all

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

#TabsToolbar {
-moz-box-ordinal-group: 2;
}
#nav-bar {
border-top-width: 0px !important;
}
Save is as userChrome.css and then place it in a folder called chrome located in your Firefox Profile. If the chrome folder isn't present create a folder by that name and then copy or move the userChrome.css file to that folder. To find your profile hit Windows key + R and then copy/paste the following string and click OK %APPDATA%\Mozilla\Firefox\Profiles

To test it disable Classic Theme Restorer and restart Firefox.
jsal0318
Posts: 855
Joined: March 5th, 2008, 8:57 am

Re: alternative to classic theme restore extension

Post by jsal0318 »

DanRaisch wrote:The instructions for using the code to get your toolbar/location bar/bookmark bar in the order you want was posted by Reflective above.
Reflective wrote:Open Notepad and then copy/paste the following code:

Code: Select all

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

#TabsToolbar {
-moz-box-ordinal-group: 2;
}
#nav-bar {
border-top-width: 0px !important;
}
Save is as userChrome.css and then place it in a folder called chrome located in your Firefox Profile. If the chrome folder isn't present create a folder by that name and then copy or move the userChrome.css file to that folder. To find your profile hit Windows key + R and then copy/paste the following string and click OK %APPDATA%\Mozilla\Firefox\Profiles

To test it disable Classic Theme Restorer and restart Firefox.
and notice where it is located
https://postimg.org/image/iikkjmpf9/

I requested it below bookmarks bar. I appreciate any help. I am not being negative about any help given :D
Last edited by smsmith on October 1st, 2017, 6:40 pm, edited 1 time in total.
Reason: removed [img] tags as the image size was breaking the forum layout - smsmith/moderator
User avatar
dickvl
Posts: 54145
Joined: July 18th, 2005, 3:25 am

Re: alternative to classic theme restore extension

Post by dickvl »

Try something like this:

Code: Select all

#navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group:10}
#TabsToolbar {-moz-box-ordinal-group:1000!important}
User avatar
Reflective
Posts: 2283
Joined: February 15th, 2007, 11:13 am

Re: alternative to classic theme restore extension

Post by Reflective »

jsal0318 wrote:
DanRaisch wrote:The instructions for using the code to get your toolbar/location bar/bookmark bar in the order you want was posted by Reflective above.
Reflective wrote:Open Notepad and then copy/paste the following code:

Code: Select all

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

#TabsToolbar {
-moz-box-ordinal-group: 2;
}
#nav-bar {
border-top-width: 0px !important;
}
Save is as userChrome.css and then place it in a folder called chrome located in your Firefox Profile. If the chrome folder isn't present create a folder by that name and then copy or move the userChrome.css file to that folder. To find your profile hit Windows key + R and then copy/paste the following string and click OK %APPDATA%\Mozilla\Firefox\Profiles

To test it disable Classic Theme Restorer and restart Firefox.
and notice where it is located https://s26.postimg.org/oji9gpc1l/image.jpg

I requested it below bookmarks bar. I appreciate any help. I am not being negative about any help given :D
I think the reason your layout appears the way it does is because you've moved the Search bar to the top. Here's what it looks like in mine: https://i.imgur.com/LXsIXlM.png As you can see the bookmarks toolbar (which I don't use) is at the top.
jsal0318
Posts: 855
Joined: March 5th, 2008, 8:57 am

Re: alternative to classic theme restore extension

Post by jsal0318 »

Same results with the above 2 changes. Any other ideas guys?
Locked