Firefox Bookmarks Toolbar

Status
Not open for further replies.

xbonez

NP : Crysis
I'm using Mozilla Firefox 3 RC1. How can i increase the size of my bookmarks toolbar to 2 rows instead of the default 1?
 

Vishal Gupta

Microsoft MVP
Type "%appdata%\Mozilla\Firefox\Profiles\" in RUN dialog box and press Enter. It'll open Mozilla Profiles folder. Now open your profile folder under it and then goto "chrome" folder. Now Add following lines in "userChrome.css" file:

Code:
/* Make bookmarks toolbar to show in multiple rows */
#bookmarks-ptf {display:block}
#bookmarks-ptf toolbarseparator {display:inline}
 
OP
xbonez

xbonez

NP : Crysis
@VG : that only works for FF2

@rayraven : thanks...the following code worked

Code:
/* Multi-row bookmarks toolbar for Fx3b5pre*/
#bookmarksBarContent
{display:block !important;}
.places-toolbar-items
{display:block !important;
height: 50px !important;
overflow-y:auto !important;}
#bookmarksBarContent toolbarseparator
{display:inline !important;}
#bookmarksBarContent .bookmark-item
{visibility: visible !important;}
.chevron {height: 0px !important;}
 
Status
Not open for further replies.
Top Bottom