Okay
  Public Ticket #2415227
Product name / price color
Closed

Comments

  •  3
    jtmffest started the conversation

    Hello again!

    All of  my product pages use a white background with black text, but I'd  like to use a dark background with white text. How do I achieve this? 

  •  8,884
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    body.single-product .container.main-content * {
        color: #fff !important;
    }
    body.single-product .container-wrap {
        background: #000 !important;
    }
    body.single-product ul.products li.product .price {
        color: #ffffff !important;
    }
    body.single-product .container.main-content .variations .tawcvs-swatches .swatch-label {
        color: #000 !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  3
    jtmffest replied

    I'll try it  out. Thanks!