Discussion of general topics about Mozilla Firefox
daviido
Posts: 9Joined: November 4th, 2009, 1:57 pm
November 4th, 2009, 2:02 pm
Posted November 4th, 2009, 2:02 pm
Okay guys, this post is going to be straight to the point, Is there a way to customize the Firefox bookmark-toolbar and the buttons above (Back,Forward,Reload...) to get a more streamlined look a la Safari 4? The themes available don't deliver a satisfying interface, only the one which is "Mac OS only" and i'm running xp /=  I hope you guys understand what i am trying to do
Anonymosity
Posts: 4649Joined: May 7th, 2007, 12:07 pm
November 4th, 2009, 3:01 pm
Posted November 4th, 2009, 3:01 pm
In other words, you do not want icons on the bookmark toolbar?
daviido
Posts: 9Joined: November 4th, 2009, 1:57 pm
November 4th, 2009, 3:05 pm
Posted November 4th, 2009, 3:05 pm
yes and i want the bar itself to be smaller (the safari bar takes less space, its hard to spot it on my screenshot) , as well as the font which is used in safari ( :
Egidio

Posts: 1926Joined: October 19th, 2007, 5:58 amLocation: Just a Mac user in Austin, TX
November 4th, 2009, 4:02 pm
Posted November 4th, 2009, 4:02 pm
Have you looked at other themes for FF? I think one problem is that FF adds icons -- even to folders; Safari doesn't. Check out GrApple to see if it addresses your likes and needs. .
Egídio Mac OS X [10.5.8 on PPC and 10.6.2 on Intel Macs]
daviido
Posts: 9Joined: November 4th, 2009, 1:57 pm
November 5th, 2009, 4:36 am
Posted November 5th, 2009, 4:36 am
unfortunately grapple is not available for windows )=
Egidio

Posts: 1926Joined: October 19th, 2007, 5:58 amLocation: Just a Mac user in Austin, TX
November 5th, 2009, 5:31 am
Posted November 5th, 2009, 5:31 am
Really? I thought themes were platform independent.
.
Egídio Mac OS X [10.5.8 on PPC and 10.6.2 on Intel Macs]
teoli2003
Posts: 3798Joined: November 10th, 2005, 2:54 am
November 5th, 2009, 6:29 am
Posted November 5th, 2009, 6:29 am
Not necessarily, some have binary components in them. Few, but some.
DanRaisch
Moderator

Posts: 57916Joined: September 23rd, 2004, 8:57 pmLocation: At the Jersey shore
November 5th, 2009, 6:53 am
Posted November 5th, 2009, 6:53 am
All of the GrApple themes are identified as MacOS only. "GrApple Delicious Version 2.0.5 - designed for Firefox 3.5 - Mac OS X only"
Dan Raisch Vista Home Premium 64, FF 3.5.5, TB 2.0.0.23
Egidio

Posts: 1926Joined: October 19th, 2007, 5:58 amLocation: Just a Mac user in Austin, TX
November 5th, 2009, 7:34 am
Posted November 5th, 2009, 7:34 am
Thanks for the clarification. Too bad it's Mac only. It looks exactly like Safari -- very minimalist and narrow toolbars.
.
Egídio Mac OS X [10.5.8 on PPC and 10.6.2 on Intel Macs]
Anonymosity
Posts: 4649Joined: May 7th, 2007, 12:07 pm
November 5th, 2009, 1:05 pm
Posted November 5th, 2009, 1:05 pm
You could try this code in userChrome.css. I think it should work (someone correct me if I got it wrong). Trebuchet font is very clear and easy to read. It should work well. - Code: Select all
/* Get rid of the icon */ #personal-bookmarks .toolbarbutton-icon { display: none !important;}
/* Set Trebuchet font for the text and set the size */ .bookmark-item > .toolbarbutton-text { font-family: "Trebuchet MS", sans-serif !important; font-size: 10px !important; margin-right: 3px !important;}
daviido
Posts: 9Joined: November 4th, 2009, 1:57 pm
November 6th, 2009, 6:53 am
Posted November 6th, 2009, 6:53 am
ok we are almost there , yet the font isn't bold ,it is too small (the standart size of the letters is fine) and the space between the bookmarks isn't wide enough (probably because the small icons were removed)
Franadora

Posts: 995Joined: July 18th, 2004, 8:52 pmLocation: NC
November 6th, 2009, 12:08 pm
Posted November 6th, 2009, 12:08 pm
in that case, you should be able to fix with some simple CSS changes. to make the text bold try adding - Code: Select all
font-weight: bold;
to add more space between the bookmarks, try changing - Code: Select all
margin-right: 4px !important }
Wenn es nicht spassig ist, ist es nicht richtig gemacht. --WindowsXP: Thunderbird 2.0.0.19; Asus Linux (Xandro)
Anonymosity
Posts: 4649Joined: May 7th, 2007, 12:07 pm
November 6th, 2009, 12:15 pm
Posted November 6th, 2009, 12:15 pm
You can change the font size to a larger number, and you can increase the margin as well. Actually, Trebuchet seems to me to be half-bold. It is thicker than the other fonts. You can add "font-weight: bold !important;" under the font-size setting.
daviido
Posts: 9Joined: November 4th, 2009, 1:57 pm
November 6th, 2009, 12:45 pm
Posted November 6th, 2009, 12:45 pm
- Code: Select all
/* Get rid of the icon */ #personal-bookmarks .toolbarbutton-icon { display: none !important;} margin-right: 4px !important }
/* Set Trebuchet font for the text and set the size */ .bookmark-item > .toolbarbutton-text { font-family: "Trebuchet MS", sans-serif !important; font-size: 10px !important; margin-right: 3px !important; font-weight: bold !important;
i tried to add the changes , but they don't apply 
Frank Lion

Posts: 11701Joined: April 23rd, 2004, 6:59 pmLocation: ... The Exorcist... United Kingdom
November 6th, 2009, 12:56 pm
Posted November 6th, 2009, 12:56 pm
daviido wrote:i tried to add the changes , but they don't apply 
Try Section 4 here - viewtopic.php?f=38&t=685365After editing and saving your changes in userChrome.css, restart Firefox using the default theme. If the changes appear there, but not in the theme you are using then it's possible that the theme author has re-inforced the code in this area with too many !important commands which makes overriding them, er, difficult. Also, in your code above, the third line which reads - - Code: Select all
display: none !important;}
...should read - - Code: Select all
display: none !important;
But that wouldn't stop the whole thing working.
Metal Lion - Themes and Extensions for Firefox."The only thing necessary for the triumph of evil, is for good men to do nothing." - Edmund Burke (attrib.) Genesis 27:11
Return to Firefox General
Who is online
Users browsing this forum: No registered users and 7 guests
|