Okay
  Public Ticket #166336
Dark Style
Closed

Comments

  • Stefaan started the conversation
    I was wondering if there is an easy way to get a Dark Style version of this theme. I mean … having a dark background with light text.
  •  1,069
    ThemeNectar replied

    Hey Stefaan,

    The header/footer both can have custom color schemes defined by you in the options panel - after you sort that you can use something like this in your Custom CSS box located in your Salient Options panel to get started on the rest:

    body, body .container-wrap, body .home-wrap, body #page-header-wrap {
      background-color: #111!important;
    }
    
    html body, html body p {
      color: #fff;
    }

    Cheers :)

  • Stefaan replied

    Hi,

    This does indeed make the background of most pages black, but leaves other parts with white text on white backgrounds. The masonry blog page for example now has white boxes for each blogpost, title and meta data is readable but the excerpt or intro text is white on a white background.

    Guess I will have to change all that too then ?

  •  1,069
    ThemeNectar replied

    Hey again!

    You could use this to sort it :)

     
    body #search-results .result, body .masonry-blog-item {
      background-color: #000!important;
    }