Hi Deuone,
if you didnt figure it out here some help, how i would do it if i were you... however
open the newthread template and search for:
Code:
<vb:if condition="$prefix_options">
after that you will find something like this:
Code:
<vb:if condition="$prefix_options">
<label for="prefixfield" class="full">{vb:rawphrase prefix}:</label>
<select name="prefixid" id="prefixfield" class="full" tabindex="1">
<option value="">{vb:rawphrase no_prefix_meta}</option>
{vb:raw prefix_options}
</select>
<p class="description"></p>
</vb:if>
<label for="subject" class="full">{vb:rawphrase title}:</label>
<input type="text" class="primary full textbox" name="subject" id="subject" value="{vb:raw subject}" maxlength="{vb:raw vboptions.titlemaxchars}" tabindex="1" />
eh voila, here we go, that is were u have the prefixes, if i were you I would change that a little bit to something like this:
HTML Code:
<ul>
<li>
<vb:if condition="$prefix_options">
<label for="prefixfield" class="full">{vb:rawphrase prefix}:</label>
<select name="prefixid" id="prefixfield" class="full" tabindex="1">
<option value="">{vb:rawphrase no_prefix_meta}</option>
{vb:raw prefix_options}
</select>
<p class="description"></p>
</vb:if>
</li>
<li>
<label for="subject" class="full">{vb:rawphrase title}:</label>
<input type="text" class="primary full textbox" name="subject" id="subject" value="{vb:raw subject}" maxlength="{vb:raw vboptions.titlemaxchars}" tabindex="1" />
</li>
</ul>
Propably you have to change it a bit more and better, this was more quick n dirty in the vbulletin editor... However, if you also give the ul an id or a class you got a nice markup for a even better css : ) and then you should not have any problems with doing so!
hope u can figure it out