site title & sidebar color

Hello,

First of all, thank you for this great theme! It perfectly suits my need.

My question is about changing the site title and the sidebar color. Am I supposed to have these options in the customize panel somewhere? Under “Colors” I only have “Background Color”, maybe it’s in an other section I’d have missed?

Thank you very much for the help.

Hi @extension,

I hope you are well today and thank you for your question.

My question is about changing the site title and the sidebar color.

You can change your site title color from the following customizer option as shown in the attached screenshot.

Admin Area -> Appearance -> Customize -> Colors

You can change the sidebar text color by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS

#secondary .widget {
    color: #6B6B6B;
}

#secondary .widget a {
    color: #C1C0C0;
}

Please change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Best Regards,
Movin

Thank you @Movin

This tip for the sidebar works :slight_smile:

About the site title however, I don’t see this “header text color” option in the customize->colors section. You can see that on the screenshot attached.

Hi @extension,

About the site title however, I don’t see this “header text color” option in the customize->colors section. You can see that on the screenshot attached.

Have you customized the Sparkling theme or are you using any custom child theme?

You can also change it manually by using the following CSS code.

#logo .site-name a.navbar-brand {
    color: #DA4453;
}

Regards,
Movin