Okay
  Public Ticket #2369861
v12 Color Changes
Closed

Comments

  •  8
    mrittman started the conversation

    Hi, after updating to version 12, some items in my theme are very dark and unable to read. I have attached a screenshot showing what happened. Can you please point me to where I need to change these? I was unable to find anything under the Salient theme options under Accent Colors or Blog.

  •  1,089
    ThemeNectar replied

    Hey mrittman,

    Those items used to be added in as a gray, but have since switched to an rgba of black in order to overlay better on top of colors such as off-white. I've noted to take a dark overall color into consideration for the first minor release. 

    You can correct this now by adding this into the custom css box located in the Salient options panel > general settings > css/script related tab:

    #sidebar .widget .nectar_widget[class*="nectar_blog_posts_"][data-style*="hover-featured-image"] li {
       border: 1px solid rgba(255, 255, 255, 0.1);
    }
    #sidebar h4,
    body .row .col.section-title span {
      color: rgba(255,255,255,0.7);
    }
    
  •  8
    mrittman replied

    Thanks so much! This fixed it :)