View Single Post
Old 01-09-2007, 03:35 AM   #2 (permalink)
RickB
Tired
 
RickB's Avatar
 
Location: Beverly Hills
I haven't tried these methods but I found 2 ways:

1) Edit your userChrome.css file.

Enable multiple rows of your current Bookmarks Toolbar:

The Bookmarks Toolbar is not limited to one row. It can display multiple rows by adding the following.

/* Multi-Row Bookmarks Toolbar */
#bookmarks-ptf {display:block}
#bookmarks-ptf toolbarseparator {display:inline}

I found this information here.

2) Install the Stylish extension first and then load this code:

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

/* Multi-row bookmarks toolbar */
#bookmarks-ptf {display:block !important; }
#bookmarks-ptf toolbarseparator {display:inline !important; }
#bookmarks-ptf .bookmark-item { visibility: visible !important;}
#overflow-padder { width: auto !important; }
#bookmarks-chevron { display: none !important; }

This code for Stylish can be added easily from here.
RickB is offline  
 

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