Slavik you want topic names to be bold on the topic list page, correct?
edit the main_topics_cell.html template and change
<a href="{$linkToTopic}">{$topicTitle}</a>
to
<span class="bTopic"><a href="{$linkToTopic}">{$topicTitle}</a></span>
then in at the bottom of the bb_default_style.css file add the bTopic CSS class definition i would set it up as follows:
.bTopic A:link { color: #0000FF; text-decoration: none; font-weight: bold; } .bTopic A:visited { color: #00FF00; text-decoration: none; font-weight: bold; } .bTopic A:active { color: #0000FF; text-decoration: none; font-weight: bold; } .bTopic A:hover { color: #FF0000; text-decoration: none; font-weight: bold; }
Specify your own colors of course... this is just a rough example. |