Tommy
Junior Member
Posts: 344
inherit
241969
0
May 2, 2023 4:47:54 GMT -8
Tommy
344
February 2017
tommytdl
|
Post by Tommy on Nov 22, 2017 8:33:57 GMT -8
I'm playing with a stock theme on a fresh install - I've changed the color scheme to be the stock dark blue from the list (see attachment). In a post, how would I change the color on a tag link? When someone is tagged in a post - we would like it a different color TommyI've tried changing it in the visual editor (see attachment #2) - the links at the bottom of the board change but the tag in the post stays white. Thanks - I'm a relative noob on this so any help is appreciated.
|
|
inherit
96289
0
May 17, 2020 9:37:00 GMT -8
elli
1,822
January 2007
ebbymac
|
Post by elli on Nov 22, 2017 9:38:26 GMT -8
You can select the user tag link with the class .user-link, but we'll need to preface it with a to increase the specificity of the selector, otherwise it will be overridden by the color of .list a. You won't be able to change this with the Visual Editor, so click the "Style Sheet" tab on that page and scroll to the bottom of the text area. Paste the following: a.user-link { color: #000; } Replace #000 with the hexadecimal value or CSS color name of your choice. You can also reference a theme variable like so: a.user-link { color: @link _color; }
|
|
Tommy
Junior Member
Posts: 344
inherit
241969
0
May 2, 2023 4:47:54 GMT -8
Tommy
344
February 2017
tommytdl
|
Post by Tommy on Nov 22, 2017 11:46:27 GMT -8
|
|