You need to sign in to do that
Don't have an account?

Back ground colours are not getting..
Hi In Below VF page i am not getting background colour,
Could you please help me here..
<apex:page standardController="Business_Plan__c" extensions="Business_Plan" sidebar="true">
<head><meta http-equiv="X-UA-Compatible" content="IE=edge" /></head>
<apex:stylesheet value="{!URLFOR($Resource.DSP, 'css/vf-tab.css')}" />
<apex:stylesheet value="{!URLFOR($Resource.DSP, 'css/dsp-tab-data.css')}" />
<div class="bPageBlock brndScnBrd secondaryPalette">
<div class="pbBody">
<table class="list" width="100%" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr class="headerRow" >
<th scope="col" class="zen-deemphasize">Contact Name</th>
<th scope="col" class="zen-deemphasize">Job Title</th>
<th scope="col" class="zen-deemphasize">Email</th>
<th scope="col" class="zen-deemphasize">Phone</th>
</tr>
<apex:repeat value="{!contactList}" var="ContactRL" id="foreaContact">
<tr class="dataRow with-data" onblur="if (window.hiOff){hiOff(this);}" onfocus="if (window.hiOn){hiOn(this);}" onmouseout="if (window.hiOff){hiOff(this);}" onmouseover="if (window.hiOn){hiOn(this);}">
<td class="ContactRL odd"><div><a href="/{!ContactRL.Id}" target="_top">{!ContactRL.Name}</a></div></td>
<td class="Job Title even">{!ContactRL.Job_title__c}</td>
<td class="ContactRL d odd">{!ContactRL.email}</td>
<td class="ContactRL even">{!ContactRL.phone}</td>
</tr>
</apex:repeat>
</tbody>
</table>
</div>
</div>
</apex:page>
use bgcolor=""
All Answers
use bgcolor=""
Thanks it got resolved
Hi Naresh,
Please Mark it as solution , So that it may help to others.