Aeon
New Member
Posts: 46
inherit
aeonofeternity@gmail.com
196622
0
Mar 26, 2023 22:20:33 GMT -8
Aeon
46
July 2013
eon
|
Post by Aeon on Dec 5, 2013 13:48:27 GMT -8
I need a plugin that will let me make each of my menu buttons a different style. I've tried doing it with just the HTML and CSS in the layout and themes settings but nothing has worked. With the way they're set up it seems the only way this can be accomplished is with a plugin and I do not have the coding ability to do so.
My goal is to use the plugin to create different colored borders around each menu item, but have the backgrounds still retain their formatting for the active buttons.
|
|
inherit
162752
0
Nov 7, 2024 3:58:23 GMT -8
Pebble
Where it all does or doesn't happen!
1,437
January 2011
pebbleleague
|
Post by Pebble on Dec 5, 2013 13:52:31 GMT -8
Forum URL ?
|
|
Aeon
New Member
Posts: 46
inherit
aeonofeternity@gmail.com
196622
0
Mar 26, 2023 22:20:33 GMT -8
Aeon
46
July 2013
eon
|
Post by Aeon on Dec 5, 2013 13:54:03 GMT -8
talviyona.proboards.com/I took down all the coding I'd done in my attempts because they'd done nothing but break the menu bar.
|
|
inherit
162752
0
Nov 7, 2024 3:58:23 GMT -8
Pebble
Where it all does or doesn't happen!
1,437
January 2011
pebbleleague
|
Post by Pebble on Dec 5, 2013 14:12:28 GMT -8
Try this at the bottom of your style sheet:
#navigation-menu > ul li:nth-child(1){ border: 2px solid red; } #navigation-menu > ul li:nth-child(2){ border: 2px solid blue; } #navigation-menu > ul li:nth-child(3){ border: 2px solid green; } #navigation-menu > ul li:nth-child(4){ border: 2px solid yellow; } Where the number corresponds to each button.
|
|
Aeon
New Member
Posts: 46
inherit
aeonofeternity@gmail.com
196622
0
Mar 26, 2023 22:20:33 GMT -8
Aeon
46
July 2013
eon
|
Post by Aeon on Dec 5, 2013 14:21:16 GMT -8
Awesome, that worked. So many things with CSS to learn still apparently.
|
|