Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #345016

    How do I adjust the image hover transparency to be black and more transparent?

    There’s 3 boxes on the home page under the slider that have a white transparency. I’d like to make it black and adjust the level.

    #345082

    Hey koala!

    Add this code to Quick CSS or custom.css:

    .avia_transform .image-overlay {
        background:#000;
    }
    
    .avia_transform a:hover .image-overlay {
        opacity: 0.6 !important;
    }

    Change the opacity to your preferred level (between 0 and 1).

    Regards,
    Arvish

    #347439

    That works, but it also makes the blue circle transparent and I’d like to keep that visible.

    #347651

    Hi!

    Please replace the code with this:

    .avia_transform .image-overlay {
    background: rgba(0,0,0,.5);
    }
    
    .avia_transform a:hover .image-overlay {
    opacity: 0.7 !important;
    }

    Best regards,
    Ismael

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