
First of all i have to say, that oscommerce sux =D, cause they don't use templating, which is awful for designers. And i gotta say, that Open cart has a lot of great features, i'm really impressed, that i have found such a great opensource online shop. Thank you

Ok, to the problem now. Actually i'm trying to modify the default theme, so tpl and css files. When i add some image to /theme/default/image and try to show this picture with css, it doesn't work. It doesn't show any picture or anything, like it would ignore the code inside css file.
For example (Modifying header.tpl for example):
CSS code:
Code: Select all
#header {
width: 100%;
height: 214px;
background-image: url("../image/top_back.png");
background-repeat: repeat-x;
}
Code: Select all
<div id="header"> Just test</div>
Code: Select all
...
<body>
<?php echo $header; ?>
</body>
</html>
Thank you,
Housy