I need to add some meta tags, another stylesheet link, more tags to the body tag, etc.
Where do I edit that from?
Thanks!
I need to add some meta tags, another stylesheet link, more tags to the body tag, etc.
Where do I edit that from?
Thanks!
If you want to edit the head content, just open the page specifically,
this is not using a template system, therefore each page has the head information.
for example the first page displayed is the default.php, approx line 37 starts the head tag
hth![]()
So if I want to, for example, add a background image, I have to add it to every php file?
Unfortunatly thats the way osCommerce is written, there are template programs out there that with some customizing will work, but they have a tendancy to slow osCommerce.
Now you can include the background image in the css, and you would not have to change anything except the one css file.
I have tried over and over to get a background image to appear using css- this is the entry:
BODY {
padding:0; background-position: center; background-image: url('http://sales.hoistwarehouse.com/www/back_drop.gif');
margin: 0px; background-repeat:repeat; background-attachment:fixed
}
What am I doing wrong?
You CSS is a little difficult to understand.
I think what you are trying to accomplish is place a background image in the center of your page. and have it stay there even though the page scrolls.
try this:
if this is not your goal, please tell me what it is you are trying to accomplishCode:body { background-attachment: fixed; background-image: url(http://sales.hoistwarehouse.com/www/back_drop.gif); background-repeat: no-repeat; background-position: center center}
I visited your site, I think one of your problems, is you have this as the location of your image: http://sales.hoistwarehouse.com/www/back_drop.gif
I could not locate the image.
I even tried
http://sales.hoistwarehouse.com/images/back_drop.gif
http://sales.hoistwarehouse.com/back_drop.gif
http://www.hoistwarehouse.com/www/back_drop.gif
http://www.hoistwarehouse.com/images/back_drop.gif
http://www.hoistwarehouse.com/back_drop.gif
Make sure the image is loaded to the server
Mike
Bookmarks