1) Time to lookup how to edit CSS files like the style.css
You can pretty much sum up CSS as ‘how to define what a particular location looks like.”
Those definitions are called “elements” and editing your CSS you can basically make each class= or id= element into however you want to look.
For example, view-source of your site by right clicking when looking at your site and it will bring up your page in HTML.
Then search for the date your talking about by something recognizable by using control-F on your keyboard and typing what your searching for.
You will find that the date your looking to change is here:
<small>August 9th, 2009 <!– by brittany –></small>
The HTML tag surrounding is is <small></small> which reduces the font size.
The containing DIV that holds that <small> html tag is:
<div class=”post” id=”post-78″>
So 1) Remove the <small></small> around it to bring it to normal size.
If you want to increase the size from there, then you edit the CSS and do something like this.
.post { font-size: 14px; }
But that will change everything inside your .post area, so what you need to do is make that date a class on it’s own:
<div class=”postdate”><?php the_date(); ?></div>
Now you can do:
.post .postdate { font-size: 14px; }
and it will only change that one particular location, not everything inside .post