canemasters:
I've got a site theme in mind, and I need some help getting it all together.
The site I'm building for a friend is http://www.binkyblanky.com
It's going to sell custom baby blankets...
Here's what I want it to look like.

I guess we should start with the purple border around the entire site, and the image at the footer. I'm pretty sure I can figure out everything else...
Thank you!
for the border, add the following highlighted portion to this declaration in your stylesheet.css
#mainWrapper {
background-color: #ffffff;
text-align: left;
width: 900px;
vertical-align: top;
border: 3px solid #B28AA5;
}
The footer is a bit more complicated and requires adding a declaration to your stylesheet.css and editing includes/templates/YOUR_TEMPLATE/common/tpl_footer.php
add the following declaration to your stylesheet.css
#footerWrapper {
background: url(../images/Your_Image.jpg);
}
Now open includes/templates/YOUR_TEMPLATE/common/tpl_footer.php
find the following line of code
<!--eof-navigation display -->
add the following just below
<div id="footerWrapper">
Now go all the way to the bottom and immediately after the last
?>
add
</div>
save the file and upload to your server