OK I got it to work (Image Included) but I don't understand how. Here is what I did.
1) Copied the Simple_Zen_Template_2.1\includes\languages\english\simple_zen\header.php to my template. Note: It only hade one change from origional and that was the tagline.
2) Copied the Simple_Zen_Template_2.1\includes\templates\simple_zen\images
A. logo.gif
B. shadow.gif
C. topnav.gif
3) Then I added the code to MY stylesheet.php
Code:
* {
margin:0;
padding:0;
}
AND
Code:
/* BOF Top Nav Links with Image (shopping cart/contact us/my account). If you'd like to use text links only, comment out this section, and un-comment out the following section*/
#tagline {
float:right;
height:70px;
width:336px;
}
#tagline ul {
height:86px;
margin:0;
width: 336px;
background:#fff url(../images/topnav.gif) no-repeat right top;
}
#tagline li {
list-style-type:none;
width:0;
height:67px;
position:absolute;
}
#tagline a {
float:left;
height:0;
position:absolute;
color:#000;
text-decoration:none;
padding-top:66px;
font: 1.5em;
}
#tagline a#sc{
position:absolute;
left:30px;
top:0px;
width:90px;
}
#tagline a#cu {
position:absolute;
left:140px;
top:0px;
width:85px;
}
#tagline a#ma{
position:absolute;
left:250px;
top:0px;
width:85px;
}
#tagline i{visibility:hidden}
/*EOF Top Nav Links with Image */
Here is what I don't understand. Nothing worked untill I added the
* {
margin:0;
padding:0;
}
In my stylesheet? What is *
Thanks,
Chad