inherit
223184
0
Jul 18, 2016 18:03:24 GMT -8
stronktank
86
July 2015
stronktank
|
Post by stronktank on Mar 8, 2016 5:10:33 GMT -8
Greetings! I'm looking for some CSS code to edit one specific button in the navigation menu. Lik on this board for example the 'Create a Forum' is highlighted in orange. To be specific I want the two buttons 'Verified PS3' and 'Verified PS4' highlighted: gccc.boards.net/forumThanks!!
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Mar 8, 2016 21:12:48 GMT -8
Greetings! I'm looking for some CSS code to edit one specific button in the navigation menu. Lik on this board for example the 'Create a Forum' is highlighted in orange. To be specific I want the two buttons 'Verified PS3' and 'Verified PS4' highlighted: gccc.boards.net/forumThanks!! We were just talking about this in another thread. ( support.proboards.com/thread/575122/different-colours-navigation-bar ) There are a couple options. If you use Stinky666's way, you have to make this bit: (8n+1 ....so the +1 is +9 (ninth one over) and then another bit of css with it +10 (tenth over) so it would look like this: (8n+10
OR you can do it my way which just targets the link itself. To exand a little on mine the blue would be a link ending like you added it to your nav menu. #navigation-menu a:link[href="/board/1/apachie"], #navigation-menu a:visited[href="/board/1/apachie"]{color:#0000ff!important;background-color:tan; } #navigation-menu a:hover[href="/board/1/apachie"]{color:#00ffff!important; }And then style as you want and of course both stinky666's and mine, which ever you choose to use, goes at the bottom of your style sheet.
|
|
inherit
223184
0
Jul 18, 2016 18:03:24 GMT -8
stronktank
86
July 2015
stronktank
|
Post by stronktank on Mar 9, 2016 4:36:11 GMT -8
Thanks again, Tumbleweed for the kind helpfulness!
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Mar 9, 2016 13:07:38 GMT -8
Thanks again, Tumbleweed for the kind helpfulness! You're welcome. Just checked your site and those links look good!
|
|