The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Quick Reply - "Close this thread" active area?
I'm having an issue with Mods accidentally closing threads when they quick reply to them.
The Close this thread checkbox selection area is active across the entire page, and is being accidently clicked in the process of trying to click the Post Quick Reply or Go Advanced buttons. The Show your signature checkbox active area only extends a little way beyond its text. Where do I look for, and how do I change the active area for the Close this thread checkbox? TIA |
#2
|
||||
|
||||
You could try adding a min-width there. (You may need to be more specific in the class/id so it only affects this one thing.) Something like:
HTML Code:
.formcontrols .blockrow * label { max-width:150px; } |
#3
|
|||
|
|||
Lynne, in the SHOWTHREAD template I found the following code that I believe is where I need to be.
Code:
<vb:if condition="$bbuserinfo['signature']"> <div class="blockrow"> <ul class="checkradio group"> <li><label for="cb_signature"> <input type="checkbox" name="signature" id="cb_signature" value="1" checked="checked" tabindex="1" /> {vb:rawphrase show_your_signature} </label></li> </ul> </div> </vb:if> Code:
<vb:if condition="$show['openclose']"> <div class="blockrow openclose"> <ul class="checkradio"> <li><label for="cb_openclose"> <input type="checkbox" name="openclose" id="cb_openclose" value="1" tabindex="1" /> <vb:if condition="$show['closethread']">{vb:rawphrase close_this_thread}<vb:else />{vb:rawphrase reopen_this_thread}</vb:if> </label></li> </ul> </div> </vb:if> Where would you suggest adding the formcontrol code? |
#4
|
||||
|
||||
The CSS is different for each. Use firebug and you'll see the width set for each is different. This is different:
HTML Code:
<ul class="checkradio group">
|
#5
|
|||
|
|||
Arh... now I have it... THANKS.
Code:
.formcontrols .blockrow * label { /* undoes the above two rules */ display:block; margin-bottom:auto; width:auto; float:none; Thanks again for your input Lynne. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|