View Full Version : firefox display
Lionel
08-11-2007, 03:32 PM
Is it possible to fix the dropdown in FF?
Brian
08-12-2007, 12:25 PM
Looks like something with your style doesn't like the way the inline moderation select menu is aligned. Try looking in your 'ADV_DYNA_BROWSECATEGORIES' template for this code:
<div class="smallfont" style="float: $stylevar[right]; text-align: $stylevar[left];">
<strong>$vbphrase[moderation]</strong><br />
<select name="action">
<option value="">$vbphrase[select_an_action]</option>
<optgroup label="$vbphrase[options]">
<option value="delete"><phrase 1="$vbphrase[entries]">$vbphrase[delete_x]</phrase></option>
<option value="restore"><phrase 1="$vbphrase[entries]">$vbphrase[undelete_x]</phrase></option>
<option value="open"><phrase 1="$vbphrase[entries]">$vbphrase[open_x]</phrase></option>
<option value="close"><phrase 1="$vbphrase[entries]">$vbphrase[close_x]</phrase></option>
<option value="stick"><phrase 1="$vbphrase[entries]">$vbphrase[stick_x]</phrase></option>
<option value="unstick"><phrase 1="$vbphrase[entries]">$vbphrase[unstick_x]</phrase></option>
<if condition="$show['feature_entry']">
<option value="feature"><phrase 1="$vbphrase[entries]">$vbphrase[feature_x]</phrase></option>
<option value="unfeature"><phrase 1="$vbphrase[entries]">$vbphrase[unfeature_x]</phrase></option>
</if>
<option value="unapprove"><phrase 1="$vbphrase[entries]">$vbphrase[unapprove_x]</phrase></option>
<option value="move"><phrase 1="$vbphrase[entries]">$vbphrase[move_x]</phrase></option>
</optgroup>
<optgroup label="____________">
<option value="viewselected"><phrase 1="$vbphrase[entries]">$vbphrase[view_selected_x]</phrase></option>
<option value="deselectall"><phrase 1="$vbphrase[entries]">$vbphrase[deselect_all_x]</phrase></option>
</optgroup>
</select> <input type="submit" id="inlinego" value="$vbphrase[go]" class="button" />
</div>
And just wrap a simple table around it.
<table width="100%"><tr><td>
Code here
</td></tr></table>
And that should take care of the problem.
Brian,
Would wrapping a DIV around it produce the same result?
<div style="width:100%;">
Code here
</div>
Thanks,
Jim
Brian
08-13-2007, 12:19 PM
Jim - You could try a div, but it did not make any difference for me when I tried, which is why I went with a table instead. Are you experiencing the same problem on your site in FireFox? Just curious since it doesn't seem to be an issue for me locally or the demo here.
No, it was just an idle question. I prefer tableless design on sites I build, so I was curious if that would work for this. It isn't an issue for me because you haven't done the vBlogetin conversion yet - as far as I can tell. Like I said in the ticket though, no rush.
Jim
vBulletin® v3.7.2, Copyright ©2000-2008, Jelsoft Enterprises Ltd.