- This topic has 1 reply, 2 voices, and was last updated 5 years, 8 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Elevate Theme Support › How to change color for frontpage 1 and title
Hello,
I need to change the color of the widget Front Page 1, and also of the title in the up-left position.
I’m using the Elevate theme.
How can I do that?
thanks.
Are you referring to the text color? If so, you can add something like this to your CSS –
.front-page-1 .image-section,
.front-page-1 .image-section a {
color: #ff0000;
}
…then replace the hex code with the color you want to use.
You can change the title/logo color by adding this –
.site-title a {
color: #ff0000;
}
You can add your own CSS to the Customize page in your admin. Look for the section labeled “Additional CSS” and you can add in custom code there if you want. You can also edit the style.css file directly.