Hi, Pedro.
In your case - as you use Mega menu and not Joomla! menu module - menu items don't have unique classes.
So the only option is point them with css using nth-child() selector:
www.w3schools.com/cssref/sel_nth-child.asp
So in your case it may be:
.t3-megamenu .navbar-nav li:nth-child(2) {
background: #ff0000;
}
Hi, Pedro.
Add it here: ROOT/templates/socialize/css/custom.css (if you don't have custom.css - feel free to create it)
HI, Pedro.
.t3-megamenu .navbar-nav li:hover:nth-child(2) {
background: #ff0000;
}
Hi, Pedro.
It should be the same code... but you may need to add this code under break points:
stackoverflow.com/questions/16443380/com...queries-break-points