Removing Scroll Buttons and Toolbar Lines


Recommended Posts

Hey guys, I decided to do a clean install on FireFox 1.0.4, but I seem to have done something wrong when trying to remove the scroll buttons and the lines that seperate the tool bars.

I put these .css files in C:\Program Files\Mozilla Firefox\defaults\profile\chrome

userChrome.css

scrollbarbutton[sbattr="scrollbar-up-top"],
scrollbarbutton[sbattr="scrollbar-down-bottom"]{
display: none !important;
}scrollbarbutton[sbattr="scrollbar-up-top"],
scrollbarbutton[sbattr="scrollbar-down-bottom"]{
display: none !important;
}


/* hide seperators between toolbars */
#toolbar-menubar {
min-height: 12px !important;
padding: 0px !important;
margin: 0px !important;
border: none !important;
}
#nav-bar {
border: none !important;
padding: 0px !important;
}
#PersonalToolbar {
border: none !important;
}

and

userContent.css

scrollbarbutton[sbattr="scrollbar-up-top"],
scrollbarbutton[sbattr="scrollbar-down-bottom"]{
display: none !important;
}

Any help would be great, thanks in advance (Y)

Link to comment
Share on other sites

For scrollbars it should be;

scrollbarbutton[sbattr=scrollbar-up-top],

scrollbarbutton[sbattr=scrollbar-down-bottom]{

display: none !important;

}

Edit...............................................................

That would have got rid of the scrollbars entirely.

You have the lines doubled-up in the userChrome.css.

Edited by CoolCatBad
Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.