I added a TOC to my page but I want to change the color of the text so it is different than the other text on the page. I assume I have to use CSS but I have no idea what to add into the CSS stylesheet. Any help would be greatly appreciated!
You need to edit the TOC and add a CSS Class Name via the dialog, eg. "mytocclass". That gets applied to the DIV around the TOC list.
Then style away (I'm assuming you already know where to put the CSS), noting some selectors will need to be quite strong to apply over the existing CSS. A simple trick is to start with an ID selector eg:
#com-atlassian-confluence .mytocclass ul li a { background: green; color: white; }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am using the ‘Table of Contents’ Macro and would like to edit the CSS. I am assuming this is done via the "CSS Class Name" field in the macro.
However, it seems that if you are using OnDemand, you can not do this. Can you explain "where to put the CSS"?
Thankyou.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@John:
You could try the following:
Enter something like "mytocclass" to the "CSS Class Name" field of the toc macro and then define the mytocclass in the Browse > Space Admin > Look and Feel > PDF Stylesheet by entering something like
.mytocclass a { color:red; }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.