Home Forums WoodMart support forum background icon

background icon

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #201163

    magalyub
    Participant

    hello
    Can you give me the CSS to make the following changes according to image01.
    1. change the red background
    2. change icon color white
    3. white text

    Attachments:
    You must be logged in to view attached files.
    #201259

    Hello,

    I saw the screenshot you attached.

    1) To change the background color of the video button try the following Custom CSS.

    .product-video-button > a {
    background: red;
    color: white;
    }

    2) To change the color of the icon try the following Custom CSS.

    .product-video-button > a::before {
    color: white;
    }

    3) To change the hover text color add the following Custom CSS.

    .product-video-button > a:hover {
    color: white;
    }

    You can adjust the colors according to your needs.

    Best Regards.

Viewing 2 posts - 1 through 2 (of 2 total)