Here is how I added it just below my logo
IN HEADER FIND:
ADD BELOW
Code:
<!-- Start Quick Style Chooser -->
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="$stylevar[outertablewidth]" class="page" align="center">
<tr>
<if condition="$show['quickchooser']">
<td class="tfoot">
<select name="styleid" onchange="switch_id(this, 'style')">
<optgroup label="$vbphrase[quick_style_chooser]">
$quickchooserbits
</optgroup>
</select>
<b><i>Quick Style Chooser</b></i>
</td>
</if>
<!-- End Quick Style Chooser -->
If you wanted it with the same background colour as your forum like mine just do the following
FIND IN HEADER
ADD BELOW
Code:
<!-- Start Quick Style Chooser -->
<if condition="$show['quickchooser']">
<td class="tfoot">
<select name="styleid" onchange="switch_id(this, 'style')">
<optgroup label="$vbphrase[quick_style_chooser]">
$quickchooserbits
</optgroup>
</select>
<b><i>Quick Style Chooser</b></i>
</td>
</if>
<!-- End Quick Style Chooser -->
VIEW HERE
hope that helps