Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
Using free Vantage 1.5 theme which just came out. Wanted to have the links use hover color and used the following css in my child theme style.css fie without success.
.mobile-nav-frame ul li a.hover {
background: #ff0000 !important;
color: #0000ff !important;
}
Any ideas? Thanks.
Hi Chemdata,
Change .hover to :hover
:hover is a pseudo-class and has a : rather than a peroid (the latter being for classes).
That did it. Thank you.