adding image to foot of each page

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 years ago
Hi, to try to do this i put the following code in default.aspx :-

<div class="FooterImage">
    </div>

and in the style.css :-

.footerimage
{
background: url(images/gaffer.jpg) no-repeat left top #FFF;
}

Thought that this would do the trick but it seems not.
Any ideas please?
13 years ago
Try this

CSS

.footerimage
{
background: url(images/WHATEVER.gif) no-repeat left top #FFF;
height:100px;  //need to specify height & width of your image.
width:100px;
}


FOOTER

<div class="footerimage">&nbsp;</div>  <!-- non-breaking space is needed between the div tags -->


NopCommerce also uses docType=XHTML which makes CSS styles case sensitive, so keep that in mind.  

class="FooterImage" <> .footerimage
13 years ago
thanks
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.