
Originally Posted by
adville
Many thanks for a comprehensive reply.
The pathetic state of my cart - stripped down as far as I've manged so far:
http://www.funnyguycards.com/cards/
I want to remove all those horizontal bars that contain the Home link, as well as removing the Home link itself.
"...Don't assign a color for the columns in your stylesheet..."
I don't know where on the stylesheet so many of these elements are - such as the columns, the place to define background color, background image, header, footer.
My trouble is that I'm used to making web pages using Dreamweaver. And I'm not great at hand-coding stuff, so this is all a bit intimidating.
again, thanks.
lets start with this:
I want my own background image - a simple gradient - tiled down the page
open your stylesheet.css (includes/templates/my_own_template/css/stylesheet.css)
Find the following:
Code:
body {
margin: 0;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 62.5%;
color: #FFFFFF;
background-color: #000000
background-image:includes/templates/my_own_template/images/TurqBackground.png;
}
Make the following changes:
Code:
body {
margin: 0;
padding: 0;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 62.5%;
color: #000;
background: url(../images/TurqBackground.png);
}