The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
how do i style the quote box independantly?
i'm wanting to make the background color of the quote and code boxes the same color as the message box color and have a dashed line border. any tips on how i can go about this? i am a css/coding beginner so my knowledge of this is very limited.
|
#2
|
||||
|
||||
Quote:
|
#3
|
|||
|
|||
i've tried that but for some reason it doesn't work.
http://204.11.239.66/forum/showthread.php?p=94#post94 Code:
<div class="smallfont" style="margin-bottom:2px">$vbphrase[quote]:</div> <table width="100%" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="0" bgcolor="#E4E6DB"> <tr> <td bordercolor="" bgcolor="#E4E6DB" class="alt2" style="border:dashed"> <if condition="$show['username']"> <div><phrase 1="$username">$vbphrase[originally_posted_by_x]</phrase></div> <div style="font-style:italic">$message</div> <else /> $message </if> </td> </tr> </table> ok some progress... the border is now dashed but in firefox it's the correct color, black but in ie it's white and the background color of the box field is still not correct. fixed: Code:
<div class="smallfont" style="margin-bottom:2px">$vbphrase[quote]:</div> <table width="100%" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="0" bgcolor="#E4E6DB"> <tr> <td bordercolor="#000000" bgcolor="#E4E6DB" class="" style="border:double"> <if condition="$show['username']"> <div><phrase 1="$username">$vbphrase[originally_posted_by_x]</phrase></div> <div style="font-style:italic">$message</div> <else /> $message </if> </td> </tr> </table> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|