Change font size in Bookmark bar
-
I use a custom css to move the bookmark bar folders to the centre of the bar but I find the font a touch small. Does anyone know how to change the font and size?
This is the css I am using currently:
/*Bookmark centered*/ .bookmark-bar .observer { justify-content: center; }
-
For the font size you can reuse your current selector
.bookmark-bar .observer { font-size: 17px; }
But for the family you have to go a level down (
.bookmarkbarItem
) and increase priority (#browser
)#browser .bookmark-bar .observer .bookmarkbarItem { font-family: serif; }
-
Brilliant, thank you.
-
Ppafflick moved this topic from Customizations & Extensions on