I just followed some of the codes (the title part) from the unstandard theme coz Im already in love with my current theme and all I want is just to have a opacity effect on the titles..
what I did was something like this:
From:
<div class="onethirdcolumn">
<?php the_excerpt(__('Readmore ?'));?>
<h5><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h5>
<p class="commenbar"><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?> - <a href="<?php the_permalink() ?>">Read More »</a></p>
</div>
to: (adding div class=title-hover)
<div class="onethirdcolumn">
<?php the_excerpt(__('Readmore ?'));?>
<div clas="title-hover (or something like that)">
<h5><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h5>
<p class="commenbar"><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?> - <a href="<?php the_permalink() ?>">Read More »</a></p>
</div>
</div>
and ofcourse I have added the css of “title-hover” in the style.css but it did not work. I think I missed something but can’t figure it out.