PDA

View Full Version : border on box pushed to the right


EdgeImpact
10-Feb-2005, 10:43 AM
Hi

I'm having trouble with a layout issue which I'm hoping someone will be able to help with.

You can see the problem at http://www.ethnictradition.com/acatalog/Jewellery.html and it only seems to happen in IE. Netscape and Safari are ok.

The right hand side of the Products navigation box is being pushed out when I display the NETQUOTEVAR:TOPLEVELSECTIONSTOP in it.

The CSS involved is
.navboxsides{
width:1px;
background-image: url("navBoxSideLeft.gif");
background-repeat: repeat-y;
}

Any suggestions gratefully received!

Regards, Sylvia

DaveT
10-Feb-2005, 11:39 AM
For a start the way to reference a background image is:

background-image: url(navBoxSideLeft.gif);

Try that for a starters, might help.

EdgeImpact
10-Feb-2005, 12:14 PM
Hi Dave

oops! missed that. Still got the same problem. The CSS is now

.navboxsides{
width:1px;
background-image: url(navBoxSideLeft.gif);
background-repeat: repeat-y;
}

Thanks for your reply

EdgeImpact
10-Feb-2005, 09:23 PM
I've managed to fix this one now. Thanks for suggestions given.