Can you provide a URL to the specific page you are referencing?
Take out all of this:
<p><span style="font-size:36px;"><span style="font-family: arial,helvetica,sans-serif;">gahanna <nbps> </nbps>marketing</span></span></p>
And replace it with something like this:
<p><span style="font:20px arial;">gahanna<br />marketing</span></p>
Josh,
Thanks for the info. Can you help with changing the font size of the title of each of my blog’s separate pages (eg: about, events, etc.)?
Do you mean the atual “links” in the menu? I don’t see a page title if I click on the link.
To change the links, Insert this into your CSS:
div.sidebar ul li ul li {
font-size: 20px;
}
Josh,
Thanks, that is exactly what I meant. Two other quick questions:
How do I add some padding or spacing between my “links” in the menu? And what css site or book do you recommend to a newbie?
Thanks for your time!
To add padding, use this in your CSS:
div.sidebar ul li ul li {
padding: 0 0 10px;
}
As far as CSS reference, here is a good place to start:
http://www.w3schools.com/css/default.asp
Thanks again. Padding not providing space in the menu list. I’ll play around with it…
I’m sorry. The above should be this:
div.sidebar ul li ul li {
padding: 10px 0 0;
}
My mistake.
Still not cooperating with the spacing, but thank you for your time!
Try this:
div.sidebar ul li {
margin: 0 0 1em;
}
Are you adding this to your stlyesheet at the bottom? The style.css file?
Yes, I have placed it right after the code you provided to increase the font:
div.sidebar ul li ul li {
font-size: 20px;
}
div.sidebar ul li {
margin: 0 0 1em;
}