Although someone could tweak the size of the Topic or Post Title to a a size which does not interfere with the positioning of the “Add Tag” section in the topic view – it would be nice we could use say <br />
too.
As an example, I’ve changed this section of “topic.php” in “kakumei”:
From:
<div id="topic-info">
<span id="topic_labels"><?php bb_topic_labels(); ?></span>
<h2<?php topic_class( 'topictitle' ); ?>><?php topic_title(); ?></h2>
To:
<div id="topic-info">
<!-- <span id="topic_labels"><?php bb_topic_labels(); ?></span> -->
<div style="width:500px"><h2<?php topic_class( 'topictitle' ); ?>><?php topic_title(); ?></h2></div>
Which is required for all templates and prone to finetuning errors.
It’d be better to add width: 500px
to the CSS class used by topic titles rather than adding it by instance.