Thank you for all of the suggestions. I have been fixing the size issue, but have not uploaded it yet...thanks for the suggestion!:smile:
I have not used CSS before and am having trouble with creating the code. Anybody have any suggestions? I have been reading for the last three hours about CSS and cannot figure out how to set up the navigation bar with individual images as buttons. Plus, would I just be adding this code to stylesheet.css in my override directory?
So this is what I have so far...I think I am way off:
#navbar {
position: absolute;
left:0px;
top:125px;
width:150px;
background:#ffffff;
font-family:"arial";
padding:0px;
font-size:0.8em;
text-align:center;
}
#maincontent {
margin-left: 142px;
padding:0px;
line-height: 150%;
font-family:"arial";
font-size:0.8em;
}
a.navbut, a:visited.navbut{
text-align: center;
text-decoration:none;
color: #ffffff;
border-style: ridge;
border-width: 2px;
border-color: #EEC #EEC #C66 #C66;
display:block;
margin-top: 0px;
margin-bottom:0px;
background-image:url(..images/b_home_normal1.jpg) ;
}
a:hover.navbut{
display:block;
text-align: center;
text-decoration:none;
color: #00F;
border-style: ridge;
border-width: 2px;
border-color: #C66 #C66 #EEC #EEC;
margin-top: 3px;
margin-bottom:3px;
background-image:url(../images/b_home_over1.jpg);
}
I basically copied and pasted this and added the one image...wow! Help! I thought that the image based left-hand navigation would be easy to place in zen cart since I moved everything I needed to the right-hand side. Plus, other than the store, the rest of my website is being created in Dreamweaver (with the appropriate links to places in the store).