how to change the header color in pro
I want the header and footer in black. I was in dark theme but the blog and post background was black
or how can I change http://www.xtremebattles.co/news/ to a white background
how to change the header color in pro
I want the header and footer in black. I was in dark theme but the blog and post background was black
or how can I change http://www.xtremebattles.co/news/ to a white background
Hi There,
I could see that you’ve changed the background color of news page to white already:
Can you confirm?
Thanks.
yes I am trying to change the background the the text. and on the post replys
Hi,
I check and can see the background is already black.
To change the color of your title, you can add the code below in Theme Options > CSS
.entry-title,
.entry-title a {
color: rgb(1,214,251) !important;
}
Hope that helps
no that doesn’t help I want the black background behind the text white not black
Hi @VelocityWeb,
Would you mind providing a mockup design of what you expect to see?
A black background with white text, right? It’s already in black background so what’s left is white text, right? I’m confused of what’s not black. Please provide more clarification.
I want the black background behind the text white not black
You may also change the CSS to this
.entry-title,
.entry-title a {
color: #fff !important;
}
Thanks!
Hi There,
Thank you for the screenshot, please add this to Theme Options > CSS
.blog .entry-wrap,
.single .entry-wrap {
background-color: #fff;
}
select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
background-color: #fff;
}
You can find the proper CSS code selector using the Chrome browser Developer Toolbar
For the CSS code itself, I suggest that you get started with this tutorial
Hope it helps,
Cheers!
Awesome thanks
Can you help with the button tag so the text is black.
Hi There,
Please add this to Theme Options > CSS as well.
.entry-footer.cf a {
color: #000;
}
Cheers!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.