Two possible problems here:
.smartBG_page2 # {background-image: url(../images/smartBG_page2.jpg);}
The # by itself will not work for anything. What element do you want the background on? If the whole page content, use #mainWrapper.
What is the exact filename you used? CSS is case-sensitive; smartBG_page2.jpg is not the same as smartbg_page2.jpg, which is what the code looks for.
.smartBG_page2 #mainWrapper {background-image: url(../images/smartbg_page2.jpg);}
The stylesheet examples are there to guide you in correct usage.


Reply With Quote
