CSS color for borders and titles
-
Hi
is there a way by CSS to change:1- the color of the borders between widgets?
2- the posts titles before and while hovering?
thanks
The blog I need help with is: (visible only to logged in users)
-
1- the color of the borders between widgets?
Sure:
.widget-area .widget { border-bottom: 1px solid #bb00bb; }Change the colour code to whatever you like.
-
2- the posts titles before and while hovering?
.entry-title a { color: #bb00bb; } h2.entry-title a:hover { color: #000000; }Learning how to target your site’s CSS will help you make certain design and layout changes. Here are some very helpful posts that will help you customize your site with CSS:
http://en.support.wordpress.com/custom-design/how-to-find-your-themes-css/
If CSS is new to you, here are some resources for learning more about it:
-
thanks a lot
i’m trying to use it myself now, not very difficult as i can see so farregards
-
- The topic ‘CSS color for borders and titles’ is closed to new replies.