This question is in reference to Atlassian Documentation: Styling Fonts in Confluence
I would like to change the color of the bookmarks in the left sidebar. How can I do that?
Hi,
if you use the view source or developer tools in your browser you can see that the class on the sidebar links (Pages, Blogs etc) is 'acs-nav-item-label'
You can sue this to create css that overides the Confluence default colour. Using the higher level class 'ia-fixed-sidebar' in fron helps make the css more specific to that area.
So this css should change the colour of the sidebar links, but not the pages a bit lower in the sidebar as I'm not sure you wanted those included.
.ia-fixed-sidebar .acs-nav-item-label { color: #cc3300; }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.