function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
KNKKNK 

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>

 

 

 
Best Answer chosen by Admin (Salesforce Developers) 
sekharasekhara

use bgcolor=""

 

All Answers

sekharasekhara

use bgcolor=""

 

This was selected as the best answer
KNKKNK

Thanks it got resolved

sekharasekhara

Hi Naresh,

 

Please Mark it as solution , So that it may help to others.