• Hi

    I have an accesspress theme (www.haleem365.com) and the cart amount is shown in green. I want the color to be changed to something esle like red or pink

    the code which is showing up cart is like this in header

    <div class=”view-cart”>
    <?php echo accesspress_store_cart_link(); ?>
    </div>

    any css tricks ?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Rashim,

    Use this CSS:

    .new-prod-slide .slick-slide .price, .feature-prod-wrap .price, .latest-cat-product .slick-slide .price, .ui-accordion-content .price, .woocommerce ul.products li.product .price, .price span, .amount {
    color: #bb2120;
    }

    Hope it helps.
    Smita:) ??

    Hi ashimabdullah,

    put this code to your Child Theme style.css file
    OR
    Install Simple Custom CSS plugin and put the code there.
    I’m doing this on my browser to find solution.
    It can get to some different behavior on your site.
    It can happen that it is not working.
    Then we have to look further.

    span.amount {
        color: red;
    }
    
    or
    
    span.amount {
        color: red!important;
    }

    Cheers
    TR

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Css For Cart’ is closed to new replies.