I created a Joomla template by creating the following files:index.php" , "templateDetails.xml","images" and "css". I installed it correctly but the images are not displayed when i am selecting the template.

Anyone knows how to resolve this problem? I triple checked the paths and different settings of Joomla but i did not work

link|improve this question

25% accept rate
Please show an example path to an image that doesn't work, and (if you know it) the expected path – Pekka Oct 19 '10 at 17:37
An example of the path I used e.g. [../images/submit-bg.gif] – user480778 Dec 4 '10 at 16:28
feedback

3 Answers

You should check again the content of templateDetails.xml Check this link: What is the purpose of TemplateDetails file

Can you give more details about the platform? Maybe you need to give permissions to the folders under linux.

link|improve this answer
Thanks for your answer. – user480778 Oct 19 '10 at 20:33
I am using windows 7 do you know how to change the permission to the folders? – user480778 Oct 19 '10 at 20:34
feedback

This is part of the XML file that corresponds to images

            <filename>images/left-top-corner.png</filename>
            <filename>images/main-banner.jpg</filename>
            <filename>images/main-bg.jpg</filename>
            <filename>images/menu-bg.gif</filename>
            <filename>images/right-bot-corner.png</filename>
            <filename>images/right-top-corner.png</filename>

This is part of the CSS code

  • { margin:0; padding:0;} html, body { height:100%;} body { background:url(..\images\main-bg.jpg) no-repeat center top #efc072; font-family:Arial, Helvetica, sans-serif; font-size:100%; line-height:1.0625em; color:#968a70;}

This is part of the basic index.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" > <head> <head> <jdoc:include type="head" /> baseurl ?>/templates/mynewtemplate/css/style.css" type="text/css" /> baseurl ?>/templates/mynewtemplate/css/layout.css" type="text/css" /> baseurl ?>/templates/mynewtemplate/css/ie_style.css" type="text/css" /> baseurl ?>/templates/template?>/css/style.css" type="text/css" />

baseurl ?>/templates/template;?>/css/ie_style.css" rel="stylesheet" type="text/css" /> baseurl ?>/templates/template;?>/css/ie7only.css" rel="stylesheet" type="text/css" /> baseurl ?>/templates/template;?>/javascript/ie_png.js">

link|improve this answer
Hi, Can you give the version details? I would like to reply your settings and see but on win xp, and then share with you if something can change. – Nervo Verdezoto Nov 8 '10 at 14:28
feedback

Did you find the problem? Looking at your CSS code I found a potential issue:

background:url(..\images\main-bg.jpg)

I think you should use normal slashes not the Windows style back slashes! Try the following:

background:url(../images/main-bg.jpg)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.