• David Cheung 14
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies

Hello everyone!!

 

I ve started my visualforce page whit this in the beginning:

<apex:page showHeader="false">
<apex:styleSheet value="{!$Resource.cssFile}"/>
 

 

In Static Resources I have a CSS called cssFile and everything works fine but;

 

In the CSS I have this:

 

#footer {
    width:820px;
    height:80px;
    text-align:center;
    margin:0 auto;
    padding:0;

    background: #EFEFEF url(footer.jpg?z=55297) no-repeat 50% 0 ;
}

 

 

 

obviously  background: #EFEFEF url(footer.jpg?z=55297) no-repeat 50% 0; doesn't work

 

 

so, I have uploaded footer.jpg as FOOTER in Static Resources, but I don't know how can I call Resource.FOOTER from the CSS

 

 

Any Idea?!?!?!?

 

 

Thanks in advance!!!