I'm messing with colors and styles on my board and I can't figure out acouple
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 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
ofI'm messing with colors and styles on my board and I can't figure out 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
class 'dropdown-item':an
.nav li a.dropdown-item:hover {
color: hotpink;
}
(That's a 'hover' rule for an 'a' element of class 'dropdown-item' inside
'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: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 413 |
Nodes: | 16 (3 / 13) |
Uptime: | 06:07:42 |
Calls: | 8,615 |
Calls today: | 1 |
Files: | 13,234 |
Messages: | 5,936,327 |