quote bubble

MattGraal

New Member
How do i change ONLY the quote bubble backround and text? The bubble you see in postbit.

I tried changing the Second Alternating Color but that changes alot more than just the quote bubble backround. Any suggestions?
 
Styles & Templates -> Style Manager -> Choose your skin, and edit templates, then something along the lines of BBCODE Templates, then look for bbcode_quote or something. My Apache isn't working, so I can't check it for you 100%. :(
 
Then i see:
Code:
<div style="margin:20px; margin-top:5px; <if condition="$show['iewidthfix']">width: 100%;</if>">
	<div class="smallfont" style="margin-bottom:2px">$vbphrase[quote]:</div>
	<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="alt2" style="border:1px inset">
			<if condition="$show['username']">
				<div>
					<phrase 1="$username">$vbphrase[originally_posted_by_x]</phrase>
					<if condition="$postid"><a href="showthread.php?$session[sessionurl]p=$postid#post$postid" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/viewpost.gif" border="0" alt="$vbphrase[view_post]" /></a></if>
				</div>
				<div style="font-style:italic">$message</div>
			<else />
				$message
			</if>
		</td>
	</tr>
	</table>
</div>

I see nothing in the revolving around backrounds.
 
Sorry im almost new at this. If i want #573629 url(images/rohan/rohan_headbg.gif) repeat-x top left as my backround for quote bubbles, what would i need to change exactly in that line?
 
MattGraal said:
Can anyone help me further?

This might give you an idea of the route you need to be taking:

HTML:
<div style="margin:20px; margin-top:5px; <if condition="$show['iewidthfix']">width: 100%;</if>">
	<div class="smallfont" style="margin-bottom:2px">$vbphrase[quote]:</div>
	<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%">
	<tr>
		<td background="/images/rohan/rohan_headbg.gif" bgcolor="#573629" class="alt2" style="border:1px inset">
			<if condition="$show['username']">
				<div>
					<phrase 1="$username">$vbphrase[originally_posted_by_x]</phrase>
					<if condition="$postid"><a href="showthread.php?$session[sessionurl]p=$postid#post$postid" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/viewpost.gif" border="0" alt="$vbphrase[view_post]" /></a></if>
				</div>
				<div style="font-style:italic">$message</div>
			<else />
				$message
	  </if></td>
	</tr>
	</table>
</div>

HTH :)
 
Back
Top