I want to make my blog post titles clickable and bigger - how do I do this ?
When I go into a specific category the blog posts arent clickable however on the main page they are. Help please !
I want to make my blog post titles clickable and bigger - how do I do this ?
When I go into a specific category the blog posts arent clickable however on the main page they are. Help please !
edit category.php (or if this is not there, edit archive.php) of your theme, and look for something like (might be slightly different - keep what is and only add what you can see from the following suggestion):
<h3><?php the_title(); ?> <span class="sub"><?php the_time(); ?></span></h3>
change to:
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?> <span class="sub"><?php the_time(); ?></span></a></h3>
to make the writing larger (if it is not already larger through the changes before), edit style.css of your theme; and add, for instance:
#primarycontainer h3 a { font-size: 25px; }thanxx !!
This topic has been closed to new replies.