Quote:
|
Originally Posted by Jenni
I'm sorry too for being dumb. I don't want my post titles in bold on single post pages. How do I make them "normal". Same size, just not bold. I assume they are "h1", but I don't see anywhere to change it.
|
in
Ata > Style edit Center Column > The LOOP
replace this:
PHP Code:
<?php bfa_post_headline('<div class="post-headline">','</div>'); ?>
with:
PHP Code:
<?php
if (!is_single()) {
bfa_post_headline('<div class="post-headline">','</div>');
} else {
bfa_post_headline('<div class="post-headline nonbold">','</div>');
}
?>
and add the css to your
Ata > html/css inserts:
Code:
div.post-headline.nonbold h1{font-weight: normal;}