Okay
  Public Ticket #2730285
settings
Closed

Comments

  • Christian started the conversation

    How can i change text for products on the front page ? w

  •  8,342
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        color: #000 !important;
    }

    Thanks


    ThemeNectar Support Team 

  • Christian replied

    Also this how can i change this color ? 

    2306293910.png


  •  2,682
    Andrew replied

    Hi Christian,

    Please try this css:

    body .woocommerce .nectar-woo-flickity[data-controls="arrows-and-text"] .previous:before, body .woocommerce .nectar-woo-flickity[data-controls="arrows-and-text"] .next:before, body .woocommerce .nectar-woo-flickity[data-controls="arrows-and-text"] .flickity-prev-next-button:after {
        background-color: #0c0c0c;
    } .flickity-prev-next-button .arrow {
        fill: #101010;
    } .span_12.light .nectar-woo-flickity[data-controls="arrows-and-text"] .flickity-prev-next-button svg circle:not(.time) {
        stroke: rgb(6 6 6);
    }

    Thanks.