Hi everyone, I'm now trying to change the size of my page title font (I am editing the page template.css) in wordpress. It is currently: <?php get_header(); ?> <div id="contentwide"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php /* list_subpages_andreas01(); */ ?> <div class="post"> <h1><?php the_title(); ?></h1> <div class="contenttext" <?php the_content('<p class="serif">Read more »</p>'); ?> </div> <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?> <?php edit_post_link('[e]','<p>','</p>'); ?> <?php comments_template(); ?> <?php endwhile; endif; ?> </div> </div> <?php get_footer(); ?> Code (markup): Since theres no size in there, where exactly should I add it in, and what should I write in order to determine the height - line-height:1.3em;? @WillR Thanks for the response, I checked my theme and this isn't the case, although its good to know for the future. Thanks, Sam