Hello,
Just beggining with PW. I've managed to create the url of the html document correctly with this code:
<?php echo $config->urls->templates?>
. Ok, easy. I have assigned to different divs a background image with CSS. This is an example of one of them:
#music{
background: url(../_img/bg_pages/HBP-Music.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
My file structure is as the picture I uploaded shows for any hints. With this actual file structure it works perfectly when its not in PW.
Do I need to paste a code to redirect it? I have several images loaded by CSS and none of them work. I also have checked the template example and I see nothing special within the url.
Could you help me out?