I have never been able to figure it out either. What I usually do is write in MS Word, copy and paste. Careful of the size, any long paragraphs over a 12 font size come out different sizes. I am sure there is an easier way, but I haven't found it, and stopped looking.
I wouldn't use the <font tag> since search engines prefer reading your tags from the css style file. Just create a simple class and add the following code for example: .font {font-size: 12px;} Code (markup): That should work.
if you are using wp check this http://faq.wordpress.com/2006/06/12/can-i-change-my-font-font-size/ but I usually use <strong><font SIZE="2"> ......... </strong></font> it works better than anything else
It's all done with css. Look for: "font-size:", "font-family:" and "font-weight:" in your style.css. Change to your desired look.
here's how to change fonts in WordPress step by step: click "Presentation" then click "Theme Editor" next select "Stylesheet" then add a new class for your font: something like this for example: .newfont { font-family: Arial, sans-serif; font-size: 1.1em; color: #000000; } then in your post let's say you want the paragraph to have this new font you would insert this into the code editor: <p class="newfont">Your new paragraph text</p> remember XHTML is not the same as HTML and you need to understand the difference. Good luck!
I use windows live writer. I can do all the editing that I want with it and it posts it to my blog for me. No hassle and really easy. I recommend it to anyone.
what's the perfect font size as a general rule. And tot he threadstarter I changed mine in the style sheet. I adjusted it from the default 62.5% to 72.5%
You can do that without playing with your stylesheeting using the methods discussed here http://en.support.wordpress.com/editors/font-size-color/
I have created a plug-in that can do this and even better: Let your users change the font size. Check it out (WordPress Font Resizer) and let me know what you think
i have used <font size> but whenever i have reverted to visual and then to html editor its shows <span> is there any code list for small, medium, x-large.
WordPress wants to see font styling in <span> which is why you are seeing it that in the html editor. Here's one way to code different font sizes: <span style="color: #1A105E; font-size: x-large;">Your words go here </span> Some of the font-sizes you can use: x-small, small, medium, large, x-large, xx-large. There may be more. I'm relatively new to WordPress and I've had to just kind of figure some html coding to get the look I want on my site. Also notice that my example includes the color as well. You can change many attributes of the font using the same syntax; just separate the different characteristics with a semi-colon.
Best way to change it - is go to "Appearances" >> then "Edit Theme" and select the .css file (usually its selected by default). Press "Ctrl" button plus press "F" at the same time - this will open a search option in your browser - and search "font" - this way, it will show you where it says font, and need to fiddle around with the number a few times to see what font your changing. That's how I ended up learning it - its painful to learn - but learn it one time, and you won't have to waste your time in the future.
Changing the css is best if you want the change to effect the entire site, but if you only want a different font in a specific area, <span> tags are best, which I believe was imraan's question.
Hi, I'm fairly new to Wordpress(.com) - I'm using one of the free themes (The Morning After). Can anyone clarify if the only way to edit the CSS stylesheet (as some of you mentioned) is to first purchase the "Custom Design Upgrade" for $30? It shows there that you can then edit the CSS to apply custom fonts and other changes. I can't find anywhere else that allows me to get into and edit the CSS. Not sure if I'm missing something or if the upgrade is the only way? Otherwise, I suppose I'll try just using the html tags for now.. my url is http://abcdesignlab.wordpress.com if that is helpful at all.
The editor in Wordpress is very basic so I have added the free Dean's FCKEditor For Wordpress plugin to all our blogs and it makes compiling pages and posts so much easier. Neil