MyBB Community Forums

Full Version: Change Background for Profile
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello! I'm working my theme right now and was wondering where I should be looking to change the portion in this screen shot that is within the border but transparent (contains my username, avatar, etc)? I'm trying to change the background color Smile
[Image: BzEreBi.png]

Thank you!
-Perocore
The code for it is in member_profile template under member templates.

<fieldset>
	<table width="100%" cellspacing="0" cellpadding="0" border="0">
		<tr>
			<td width="75%">
				<span class="largetext"><strong>{$formattedname}</strong></span><br />
				<span class="smalltext">
					({$usertitle})<br />
					{$groupimage}
					{$userstars}<br />
					<br />
					<strong>{$lang->registration_date}</strong> {$memregdate}<br />
					<strong>{$lang->date_of_birth}</strong> {$membday} {$membdayage}<br />
					<strong>{$lang->local_time}</strong> {$localtime}<br />
					<strong>{$lang->postbit_status}</strong> {$online_status}
				</span>
			</td>
			<td width="25%" align="right" valign="middle">{$avatar}</td>
		</tr>
	</table>
</fieldset>

Replace <fieldset> with <fieldset style="background-color:blue;">
Excellent, thank you very much!