Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

background


Guest

Recommended Posts

I've added this to my stylesheet but it doesn't seem to work:

 

BODY {

background-image: url('images/backer1.gif');

margin: 0px;

}

Link to comment
Share on other sites

it should look like:

 

BODY {

background-image:

url(/images/backer1.gif);

margin: 0px;

}

 

 

this is of course assuming you have the background image in your image folder. :thumbsup:

 

 

 

Matthew

 

www.ShanesDVDWorld.com

Link to comment
Share on other sites

Either one of these worked in Firefox:

 

BODY {
background-image: url('http://seyantesthetique.com/backer1.gif');
margin: 0px;
}

 

BODY {
background-image: url('/backer1.gif');
margin: 0px;
}

That is close to the top of your stylesheet.css

 

Your main problem is that you have another BODY definition in the stylesheet close to the bottom of the file:

 

body{
background: url("images/m01.gif");
}

You need to remove this second BODY definition.

:blush:

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...