PDA

View Full Version : width of Style Quickchooser


kleinschwanz
09-20-2008, 05:36 PM
well, I have just a small problem and I guess each of you should know but as I am not the codeguru I better ask where to find the option.

I would like to put the stylechooser in a own position but there it does not fit at all and as I have only the var $quickchooserbits in which the width is already implemented, I ask myself wher could I find the settings to do so.
in the following screenshot you can see this code:

<if condition="$show['quickchooser']">
<td >
<center><select name="styleid" id="ressel" onchange="switch_styleid(this)">
<optgroup label="$vbphrase[quick_style_chooser]">
$quickchooserbits
</optgroup>
</select></center>
</td>
</if>

See my problem in the attached screenshot

The idea behind it is to not show any adjustment links to not logged in users and still have a consequent style in the page. Take a look at GFX Elite Forums (http://www.gfxelite.de/forum/)

so maybe anyone knows where I find the definitions of

$quickchooserbits
so I could change the width of the inputfield.

many thanks in advance.

Princeton
09-22-2008, 12:04 PM
try..

FIND:
<select name="styleid" id="ressel" onchange="switch_styleid(this)">

REPLACE WITH:
<select name="styleid" id="ressel" onchange="switch_styleid(this)" style="width:100px">

kleinschwanz
09-23-2008, 01:00 AM
thx a lot =)