COLOR AND CSS
-
I use the VISUAL THEME, i buy the upgrade for the colour, police and css.
First I would like to know if it’s possible to put a colour for the post box, but just for the box where it shows the title of the post, not the entire box.
My second question, is where i can find the css for the entire VISUAL THEME, i would like to change some setting, but i don’t want to start from scratch.
The blog I need help with is: (visible only to logged in users)
-
-
First I would like to know if it’s possible to put a colour for the post box, but just for the box where it shows the title of the post, not the entire box.
Try adding the following CSS:
.entry-header { background: #000000; }Instead of #000000, add the hex color code for whatever color you want (that code is for black):
http://www.w3schools.com/html/html_colors.aspMy second question, is where i can find the css for the entire VISUAL THEME, i would like to change some setting, but i don’t want to start from scratch.
The way our CSS editor works, you don’t need to reference the original CSS. Instead, you can use a tool such as web inspector to identify the selector for the element you want to change and then you add only your change into the CSS panel.
We’ve got a great series on the Daily Post teaching our users basic CSS. You should check these out! They’re a big help:
http://dailypost.wordpress.com/2013/06/21/css-intro/
https://dailypost.wordpress.com/2013/07/25/css-selectors/
http://dailypost.wordpress.com/2013/08/29/css-matched-rule-pane/If you need additional help with CSS, please ask in the CSS forum here:
https://en.forums.wordpress.com/forum/css-customization -
OK thanks it’s work.
Now i try to change the font color of my title post but it doesn’t work on my main page, but my second page when you click on the post, works.
I read a lot, and with a html/css code, it will be easy for me to change it…
This is why i would like the entire css of the theme.I was thinking that :
.entry-header {
color: #FFF;
}or
.entry-title{
color: #FFF;
}will do the trick…but no.
-
Hi there –
You nearly had it! Try adding this to the bit you already have:
.entry-header .entry-title a { color: #FFF; } -
- The topic ‘COLOR AND CSS’ is closed to new replies.