How can you change the Site Title Font in a Pre-Designed Wordpress Theme?
Can anyone help
I just created a Wordpress blog using the Bueno theme. I like pretty much everything about this theme except for the boldness and all caps of the Title. Does anyone know how to change the font style for the Site Title? I don’t know much about CSS and it looks like that is the only place there is a possible way that I could make this change. Thanks
Mail this postPopularity: 2% [?]
1 Comment »
RSS feed for comments on this post. TrackBack URL
Open up your site in a browser and go to view then click source and press Ctrl F then type in the site title and click find.
The Title should be in between two tags that look like this for example <h1>Title</h1> or <div id="title">Title</div>
once you know what the tag or id is go to the css and find the selector(tag) that encloses the Title then you change it like this Example:
h1 {
font-weight: normal; <!– gets rid of bold –>
text-transform: none; <!– Gets rid of all Capitals if set to uppercase –>
}
#title {
font-weight: normal ;
text-transform: none;
}
or you can just delete the code that is making it bold so delete what I just wrote. hope that helps