Hi,
I'm making a custom template and I have the following html in my header.html.
<tr>
<td><div class="label">Sort Options</div>[SORT]</td>
<td><div class="label">View by Category</div>[CATEGORIES]</td>
<td><div class="label">View by Document Type</div>[ATTRIBUTE:Document Type]</td>
<td><div class="label">View by File Type</div>[ATTRIBUTE:File Type]</td>
<td>[UPLOADBUTTON][MODERATEBUTTON]</td>
</tr>
The dropdown menus are all set to 100px wide and I cannot change them. Here is what is output for the [CATEGORIES] TD....
<td><div class="label">View by Category</div><select name="dnn$ctr389$Repository$ddlCategories" onchange=" setTimeout('__doPostBack(\'dnn$ctr389$Repository$ddlCategories\',\'\')', 0)" id="dnn_ctr389_Repository_ddlCategories" title="Select Category" class="normal" style="width:100px;">
<option value="5">ALL</option>
<option value="6">Fiscal</option>
<option selected="selected" value="7">Human Resources</option>
</select></td>
Notice the bold part
class="normal" style="width:100px;">
I've been looking all over and I cannot find where to change this. I even did a search on the whole DNN directory for "class="normal" style="width:100px;">"
I cannot change this with CSS because the style="width:100px;" is the very last thing in that select tag...so it overwrites whatever style I do. So, in Internet Explorer my "Human Resources" option reads "Human Resourc" because the dropdown menu isn't wide enough.
Can we get rid of the style="width:100px;"?
Thanks!
-Tim