Quote:
Originally Posted by nakedanvil
Now I see. Wasn't understanding "output". I was thinking form display.
Try my form again please, you'll see now what I'm trying to do.
|
Quote:
Originally Posted by nakedanvil
1) Except it should be bold, centered and size 5. And the "description" text right under should not be bold.
2) Thank, I'll try it! I sure appreciate it.
|
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>