Quote:
Originally Posted by bananalive
For title being bold, centered and size 5 - Open template form_view
- Find line:
HTML Code:
<h2 class="blockhead">{vb:raw form.title}</h2>
- Replace with:
HTML Code:
<h2 class="blockhead" style="font-weight: bold; text-align: center;"><font size="5">{vb:raw form.title}</font></h2>
For description not being bold - Open template form_view
- Find line:
HTML Code:
<div class="blocksubhead restore">{vb:raw form.description}</div>
- Replace with
HTML Code:
<div class="blocksubhead restore" style="font-weight:normal;">{vb:raw form.description}</div>
|
Mine looks like this:
HTML Code:
<form class="vbform block" action="{vb:raw action}" method="post" name="vbform"<vb:if condition="$editorreturn"> onsubmit="return({vb:raw editorreturn})"</vb:if>>
<vb:if condition="$preview"><h2 class="blockhead">{vb:rawphrase preview}</h2>
<div class="blockbody postpreview">
<div class="blocksubhead">
<vb:if condition="$threadtitle"><strong>{vb:raw threadtitle}</strong><vb:else /><strong>{vb:raw form.title}</strong></vb:if>
</div>
Second one is right.