I'm messing with colors and styles on my board and I can't figure out a couple
places for color entries. Mainly if I mouse over the menu across the top, what
css value do I need to change for the hover color? Is it just a:hover or something else?
Re: custom.css question
By: Android8675 to echicken on Tue Oct 20 2020 11:48:12
I'm messing with colors and styles on my board and I can't figure out a couple
places for color entries. Mainly if I mouse over the menu across the top, what
css value do I need to change for the hover color? Is it just a:hover or something else?
You can probably get away with something like this:
a.dropdown-item:hover {
color: hotpink;
}
echicken
I'm messing with colors and styles on my board and I can't figure out a couple
places for color entries. Mainly if I mouse over the menu across the top, what
css value do I need to change for the hover color? Is it just a:hover or something else?
You can probably get away with something like this:
a.dropdown-item:hover {
color: hotpink;
}
You can get more specific if necessary to avoid changing all 'a' elements of class 'dropdown-item':
.nav li a.dropdown-item:hover {
color: hotpink;
}
(That's a 'hover' rule for an 'a' element of class 'dropdown-item' inside an 'li' element inside any element of 'nav' class.)
Browser dev tools can help you inspect an element and quickly see what classes it has and what its parent element(s) are. Typically that's a right click on the element, and 'Inspect'.
Sysop: | Rempala |
---|---|
Location: | Richlands, NC |
Users: | 112 |
Nodes: | 10 (0 / 10) |
Uptime: | 202:35:35 |
Calls: | 355 |
Files: | 6 |
Messages: | 111,047 |