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
diydiy 

problem in repeted images apply in all components

I used output panel,pageblock,pageblock table,render ,rerender ,jquery  in vf pages.. In this page I want to set a repeted background image .. but it displayed only top of the portion ..so i put image in all the components using style tag.. but some of the portions are not covered.. How can I apply all over the screen ?

 

style="background:white url(https://na15.salesforce.com/resource/467557050000/marble)repeat scroll;"   > 
Ashish_SFDCAshish_SFDC
Hi Diy, 

This is the html code,

<!-- Codes by HTML.am -->
<div style="background-color:white;background-image:url(http://www.html.am/images/backgrounds/background-image-2.gif);border:1px solid black;width:300px;height:300px;font-size:18px;">
HTML background repeat example
</div>

http://www.html.am/html-codes/background-code/background-repeat.cfm

<apex:repeat value="{!showSome}" var="s" >
       <apex:pageBlock>
       <apex:pageBlockSection >
           <apex:pageBlockSectionItem >
               <apex:outputLabel for="field" value="{!s.name}" />
               <apex:inputField value="{!s.id}" id="field"/>
           </apex:pageBlockSectionItem >
           </apex:pageBlockSection >
       </apex:pageBlock>
       </apex:repeat>

Regards,
Ashish