Font problems and css

Today’s question:
While working on one post, my font changed and now all of the posts are changed. How do I get it back to what it was before? Is there a place to set the master default font? Also, what are tags, clouds, hover text?
Few things in the question here so today I will address the font and css issues and leave tags and clouds for another post.
If you were using font tags in you post and left it open it would carry through on you index page to other posts.
When you went to the individual posts they should still show in the normal way as individual posts. Need to be very careful when adding special fonts in to end them too. Each time you use <font> tag you need to have a corresponding </font> tag.
Your styles sheet is where your default fonts are found. Usually found in your theme folder with a name of style.css or something similar.
You can look for the font-size: and the font-family:tags in the area of the blog you want to change.
***Caveat – Never change anything in the css file without a backup file.
Here is an example from the logo area of another blog of mine.
.logo-name
{
font-size: 32px;
font-family: Impact;
font-style: normal;
font-weight: normal;
}
The only thing to be aware of when changing anything in the css is that sometimes the positioning is exact and you would need to keep the total the same.
For example I have had one theme where I wanted to increase the size of the title font. Changed that by 8 px but then had to reduce another spacing entry by the same number or the overall header became higher by the 8 px.
Understanding css is important before you start trying to adjust and more of a topic than can be addressed in a single blog post.
So that is where you can change the defaults if you have an understanding of how style sheets work but always make a back up before you start any changes.
Hover text is also controlled in the css file and hover text is what happens when you mouse over a particular link.
On this blog if you mouse over any of the blue links in any post they will change to black with an underline. If you put your mouse over any of the items in the my sites area on the side bar you will see a text box with a description come up.
Hope that helps and will address tags and clouds in another post.
As always your questions and comments are welcomed and appreciated.
Mike Paetzold

Related posts
Like this post? Subscribe to my RSS feed and get loads more!

















5 comments
Andre Arnett on December 7, 2008 at 11:29 am
Good information to know about, thanks for sharing with us.
Andre Arnett´s last blog post..New Breed Marketer Talks About Using PLR Video Bundle
Paul Livingston on December 7, 2008 at 6:01 pm
Odd. I’ve never seen that happen. (But if it does, now I know what to do!)
I wonder how the OP’s font changed in the first place.
Paul Livingston´s last blog post..Boost Sales and Build Your List with Free Pre-made Videos.
Vitallywell on December 7, 2008 at 6:38 pm
Mike,
Regarding this flexible theme, I started playing around with it and it is not very intuitive (for me anyway). Are there any resources for how to set it up? I am not finding any. I like the fact it is 2.7 compliant, like the look, just frustrated getting it to look like I want. If you have any resources you would like to share, I would appreciate it – thanks.
Mike on December 7, 2008 at 7:04 pm
@Vitallywell -
No I don’t and is one of the reasons when I reviewed the theme I said that it was fine for people that were comfortable with css files because then it is intuitive but that it was not easy for newer people. Sorry.
They actually should make some directions but as it is free I don’t think that is likely.
Gus on December 21, 2008 at 2:00 pm
Hey, that’s helpful, thanks. Goes hand in hand with a wp tag primer I found here.
Cheers!