I found the answer to my question in this thread:
http://forum.bytesforall.com/showthr...es+titles+body
But still have a question: where do I have to replace the PHP code that Flynn indicates (post 2, point 3):
PHP Code:
<?php
if (!is_page()) { ?>
<div class="post-headline">
<h2><?php
if( !is_single() AND !is_page() ) { ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php
if (function_exists('the_title_attribute')) {
the_title_attribute();
}
elseif (function_exists('the_title')) {
the_title();
} ?>"><?php
} the_title();
if( !is_single() AND !is_page() ) { ?>
</a><?php
} ?>
</h2>
</div>
<?php } ?>
I've searched in the Atahualpa theme options, but couldn't find such an option. I suppose I have to work in the CSS or a file... but don't know which/where!
Thanks a lot for your help!