Hello Boho – Need to change font colors in specific areas

QuestionsCategory: CustomizationHello Boho – Need to change font colors in specific areas
Natasha Dickey asked 5 years ago

I am looking to change the color of the font in two places that I can’t do with the Customizer.
In my customized Home Optin 2 (https://www.unjunkiefied.com) you can see that the subscribe now button is that bluish – teal color and the font is white which makes it impossible to see. Is there a way that I can change that specific button font to be black?
Second, on the Home About 1 and 2. In the demo, where it says Hey You. It’s in black. How do I can change the color of that font? My image in that area is darker so the blackish font doesn’t look very good.

1 Answers
Jennifer Staff answered 5 years ago

For the subscribe button, on line 49 in your style-front sheet you will see
 
.home-optin-2 .enews-widget input[type=”submit”] {
background: rgb(20, 255, 252) !important;
border: 1px solid rgb(20, 255, 252) !important;
color: #fff !important;
}
 
Change it to
 
.home-optin-2 .enews-widget input[type=”submit”] {
background: rgb(20, 255, 252) !important;
border: 1px solid rgb(20, 255, 252) !important;
color: #222 !important;
}
 
For the “Start Here” go to line 655 in the style-front css and change the color from #333 to any color you would like.

Natasha Dickey replied 5 years ago

Thank you. You are amazing. I combed through the style sheet earlier and just gave up. I so appreciate you told me what lines to go to 🙂