changing background color of top call out and text in that top call out

How to change background color of top call out and text in that top call out ? is that possible ?

Hi @ethann,

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

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other


nav#site-navigation a{
  color: #fff;
}

nav#site-navigation ul,
nav#site-navigation {
    background: #000;
    color: #fff;
}

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_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Best Regards,
Movin

thanks a ton @Movin it worked

You are most welcome here :slight_smile: