replace background color on widget and replace small hearts
-
hi,
I would like to change the backgorund colour of the widget title ( now light orange)
how can I do?Moreover how can I remove hearts from post title? I d have something else instaed. (I did in the header but no on the single post title)
Many thanks
my theme is pretty youngh things
The blog I need help with is: (visible only to logged in users)
-
I would like to change the backgorund colour of the widget title ( now light orange) how can I do?
To change the widget title background color in the Pretty Young Thing theme, add this to your Appearance → Custom Design → CSS editor:
.widget-area h4 { background: salmon; }Change the color name to a color code of your choice:
http://automattic.github.com/Iris/ -
Moreover how can I remove hearts from post title? I d have something else instaed. (I did in the header but no on the single post title)
To remove the hearts from the left of page titles in the Pretty Young Thing theme, add this to your Appearance → Custom Design → CSS editor:
h1, h2 { background: none; padding-left: 0; }To remove the tiny heart from next to the date in the post meta:
.tags, .time { background: none; padding-left: 0; }
- The topic ‘replace background color on widget and replace small hearts’ is closed to new replies.