MyBB Community Forums

Full Version: make image not repeated
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi
guys i have problem on make image not repeated.

i use this postbit cod:


<table cellspacing="0" cellspacing="{$theme['borderwidth']}" border="0" style="width: 100%" background="images/postbitimages/{$post['fid4']}.png" class="gplus" >
					<tr>
						<td class="post_avatar" width="1" style="padding-left: 10px;">
							{$post['useravatar']}
						</td>
						<td class="post_author">
							<strong><span class="largetext">{$post['profilelink']}</span></strong><br />       

							<span class="smalltext">
								{$post['usertitle']}<br />
								{$post['userstars']}
								{$post['groupimage']}
							</span>
						</td>
						<td class="smalltext post_author_info" width="165">
							{$post['user_details']}	
						</td>
					</tr>
				</table>

and css:

. gplus { 
    width: 100%; 
    margin: auto auto; 
}


my problem:

[Image: Untitled.png]

But i don't know why the image in my postbit is repeated ??!!

pleas some one help me.

:| :| :|
is somebody here?!
.gplus { 
    width: 100%; 
    margin: auto auto;
    background-repeat: no-repeat;
}

That should work. ^.^
yes thank you