Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #599636

    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?

    #599656

    Hi @mikehenze ;
    I think HEX colors work with 3 or 6 numbers.
    #32602 there is on missing or two spare numbers.

    #599666

    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

    #599679

    Ahh I should have known that…
    Thank you, that works fine now.

    #599752

    Hi!

    Glad to hear it works fine now!

    Cheers!
    Jordan

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.