Okay
  Public Ticket #234350
Text color
Closed

Comments

  • Sanjay started the conversation

    By default the color of the text (menu, paragraph etc) is a shade of grey. How can I change the default text color to a darker shade.

  •  8,448
    Tahir replied

    Hey Sanjay!

    Add this into the Custom CSS box located in your Salient Options panel :

    body {
    	color: #333 !important;
    }
    

    Cheers


    ThemeNectar Support Team 

  • Sanjay replied

    Thanks. How do I do the same thing for menu?

  •  8,448
    Tahir replied

    Hey Sanjay!

    You can set a custom color scheme in Salient Options Page -> Header Section . See screenshot: http://prntscr.com/3xxg47

    Thanks


    ThemeNectar Support Team 

  • Sanjay replied

    Hopefully last questions on this topic.

    - How do I change the color on the pricing table text: www.izonehealing.com/pricing

    - How do I change color on the right sidebar in the blog titles (like, follow us on facebook): www.izonehealing.com/blog

    - In the custom CSS code you had given earlier, does #333 indicates  how dark the text will look. What is the range of this parameter:

    body {
    	color: #333 !important;
    }

    Thanks for the wonderful support. Love it.

    Best Regards,

    Sanjay

  •  8,448
    Tahir replied

    Hey Again!

    1) Use this css:

    body .pricing-table > div h3 {
        color: #ff0 !important;
    }
    

    2)

    body #sidebar h4 {
        color: #ff0 !important;
    }
    

    The color is a hexadecimal value. It can be 3 digits or 6 digits. 

    Thanks


    ThemeNectar Support Team 

  • Sanjay replied

    Sorry one more :).

    See the home page: www.izonehealing.com. The section with tab contents.  How do I change the color of the "un-highlighted" tab headers to white (or lighter color as specified in the row text color section).

    Thank  you,

    Sanjay

  •  8,448
    Tahir replied

    Add this into the Custom CSS box located in your Salient Options panel :

    body .light .tabbed > ul li a {
        background: #f8f8f8 !important;
    }
    
    
    

    Thanks


    ThemeNectar Support Team 

  • Sanjay replied

    Hi, It did not work as I wanted. It created the background color of the tab header white. Maybe I did not explain it correctly. 

    See the tab title text. It is kind of hard to read the titles because of the color. I think if we make the color of the text of the tab title as white, then it will be easy to read. Please see the tab content at : www.izonehealing.com

    Thanks

  • Sanjay replied

    I got it. I changed from background to color and it worked. Thank you.