Home Forums WoodMart support forum Changing specific elements colors

Changing specific elements colors

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #313822

    henalon123
    Participant

    Hi there, i want to be able to change this specific colors (see screenshot attached), right now i cant do it, changing the Primary color will change the prices colors and other elements as well, so either tell me how to change the price and the badges colors, or tell me how to change the elements colors in the screenshot.
    Best regards.

    #313870

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body .labels-rectangular .onsale { 
    background-color:red; 
    }
    body .wd-hover-standard .wd-add-btn>a {
        background-color: red;
    }
    body .wd-hover-standard .wd-add-btn>a:hover {
        background-color: red;
    }

    Set the colors as per your needs.

    Best Regards

    #313892

    henalon123
    Participant

    Hi there, it changed only the sale badge color, still need to change the button “buy now” button, see the screenshot

    #313940

    Hello,

    Please provide the page URL, I will check and correct the CSS.

    Best Regards

    #314146

    henalon123
    Participant

    Ive added the link in the private area

    #314190

    Hello,

    Please replace this code:

    body .wd-hover-standard .wd-add-btn>a {
        background-color: red;
    }
    body .wd-hover-standard .wd-add-btn>a:hover {
        background-color: red;
    }

    for this one:

    body .wd-hover-quick .wd-add-btn>a {
        color: #FFF;
        background-color: green;
    }

    Set the colors as per your needs.

    Best Regards

    #314194

    henalon123
    Participant

    Great its working, last issue :
    I need to center all the elements in the quick view (ive attached a screenshot for that), and i need to make the brand logo a little bit larger (on the quick view + product page as well)
    Best regards.

    #314195

    henalon123
    Participant

    Also the quick add to cart in mobile view – the variations is still very small although i did exactly what you said before in other thread (ive attached a screenshot for that)
    Please help.

    #314349

    Hello,

    We do apologize for the misunderstanding.

    Please add this custom CCS to the Theme Settings > Custom CSS > Global to fix the issue:

    .cat-design-center .wrapp-category {
    	position: relative;
            overflow: hidden;
    }

    This will be fixed in the nearest update.

    Best Regards

    #314429

    henalon123
    Participant

    Hi there, added this code and cleared cache, this code didnt change anything

    1. I need to center all the elements in the quick view (ive attached a screenshot for that), and i need to make the brand logo a little bit larger (on the quick view + product page as well)
    Best regards.

    2.Also the quick add to cart in mobile view – the variations is still very small although i did exactly what you said before in other thread (ive attached a screenshot for that)
    Please help.

    I Added already screenshots for both issues in the previous messages in this thread

    #314560

    Hello,

    Sorry, I have sent the CSS that was for another topic by mistake.

    Please add this code to the Theme Settings > Custom CSS > Global:

    .product-quick-view .wd-scroll-content {
    	text-align: center
    }
    
    .website-wrapper .product-image-summary .wd-product-brands img {
        max-width: 150px;
    }
    
    .popup-quick-view .product-quick-view .wd-product-brands img {
        max-width: 100px;
    }
    
    @media (max-width: 768px){
    	.products .quick-shop-wrapper .swatch-on-single.swatch-with-bg {
    			width: 40px;
    			height: 40px;
    	}
    }

    Best Regards

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