Showing posts with label css solution for wordpress website. Show all posts
Showing posts with label css solution for wordpress website. Show all posts

Saturday, September 8, 2012

Twenty Eleven Stylesheet Modification Easy Way

This is very useful for wordpress user, who use 'Twenty Eleven' theme. I collected this post from a site. original post link is here

1. If you want to Header Site Title Font color,font size, font type of your Twenty Eleven theme

#site-title a {
color: red;
font-family: times New Roman;
font-size: 30px;
font-weight: bold;
line-height: 36px;
text-decoration: none;
}

2. If you want to change the Site Title’s mouse over (hover) font color of Twenty Eleven

#site-title a:hover, #site-title a:focus, #site-title a:active {
color: #1982D1;
}