Hi,
I would like to change the color of the arrow in portfolio grid.
I tried the following css but that does not seem to work:
.avia-arrow {
background: #32602; !important
}
What am I missing here?
Hi @mikehenze ;
I think HEX colors work with 3 or 6 numbers.
#32602 there is on missing or two spare numbers.
Hi mikehenze!
Thanks for reaching out to us!
The above code has a few errors. The semicolon ; should be after the !important tag. Also the value for the color only has 5 digits (32602), you need to have 6 digits to represent a color. After making those 2 adjustments, if background does not work, then try background-color. You should have something like this:
.avia-arrow {
background-color: #326021 !important;
}
Provide a link to your page if the above does not work.
Best regards,
Jordan
Ahh I should have known that…
Thank you, that works fine now.
Hi!
Glad to hear it works fine now!
Cheers!
Jordan