Quote Originally Posted by darths View Post
I'm wondering if someone can help out a lost newbie... (site is www.sistersecrets.net)

All I need to do is get a 1000x168 logo at the top of the apple zen template. I followed the instructions exactly, but I can't seem to get it. It worked for firefox at one time, but not for IE. Currently it is shown at the top above the menus like I want, but the image is cut off about 3/4 of the way across. Here is the stylesheet.css I have:

h4.optionName {
line-height:1.5em;
padding-right:1em;
}
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerB
oxContentsAlsoPurch, .attribImg {
float:left;
}
#logo {
#float:left; /* to center your logo, uncomment the "text-align:center;margin:0
auto" below. Also remove "float:left" */
text-align:center;
margin:0 auto;
width:1000px;
}
#logo {
#width:19.1em; /* To prevent the logo from resizing, simply delete or comment o
ut this section */
}
LABEL.inputLabel {
width:85%;
float:left;
margin:.3em 0;
You've got some crazy commenting going on there, and I bet that's at least part of your issue, if not all.

In css, to comment out (hide) something, it should look like this:

/* Hidden Stuff here */

those #'s you have before stuff to try and hide it, isn't going to work. Either fix the commenting, or just go ahead and delete the sections you don't want to use.