Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1103095

    Hi, this is my WooCoomerce’s shop page: click here

    How I can edit style? For example, change image background color? Or change title background color? Thanks

    #1103526

    Hey Pas7o,

    You can add the following css codes in Quick CSS, located in Enfold > General Styling.

    Change image background color:

    .post-type-archive-product .thumbnail_container {
        background: white;
    }

    Change title background color (including the arrow):

    .post-type-archive-product .inner_product_header, 
    .post-type-archive-product .inner_product_header .avia-arrow {
        background-color: #eee;
    }

    Hope this helps.

    Best regards,
    Nikko

    #1103575

    Perfect! Thanks. Can you say me how I can change “add cart” and “see details” buttons background color, please?

    I want change the colors (image, title, buttons backgrounds) also into a single product and a slider products.

    Thanks

    #1103603

    Hi Pas7o,

    This is for the buttons (the color is slightly changed because of the opacity):

    #top .avia_cart_buttons {
        background-color: black;
        opacity: 0.8;
    }

    As for the changing it to single product, I think the best way is to make the code global, so from the previous codes I gave replace .post-type-archive-product with #top, so from:

    .post-type-archive-product .thumbnail_container {
        background: white;
    }
    
    .post-type-archive-product .inner_product_header, 
    .post-type-archive-product .inner_product_header .avia-arrow {
        background-color: #eee;
    }

    to:

    #top .thumbnail_container {
        background: white;
    }
    
    #top .inner_product_header, 
    #top .inner_product_header .avia-arrow {
        background-color: #eee;
    }

    Best regards,
    Nikko

    #1103623

    Ok thanks.
    This code:

    #top .avia_cart_buttons {
        background-color: black;
        opacity: 0.8;
    }

    It’s valid everywhere (page shop, single product, slider products)?

    #1103894

    Hi Pas7o,

    Yes, it should be valid everywhere.
    If it doesn’t work on some pages, just give us the link so we can check.

    Best regards,
    Nikko

    #1103911

    Ok thanks.

    #1103954

    Hi Pas7o,

    You’re welcome, just let us know if you need further assistance.

    Best regards,
    Nikko

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