我通过创建以下文件创建了一个Joomla模板: index.php “,” templateDetails.xml “,”图像“和“ css ”。我已正确安装,但在选择模板时图片不会显示。
任何人都知道如何解决这个问题?我三重检查Joomla的路径和不同的设置,但我没有工作
这是与图像对应的XML文件的一部分
<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>
这是CSS代码的一部分
{ 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;}
这是基本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?&gt; /templates/mynewtemplate/css/style.css“type =”text / css“/&gt;
baseurl?&gt; /templates/mynewtemplate/css/layout.css“type =”text / css“/&gt;
baseurl?&gt; /templates/mynewtemplate/css/ie_style.css“type =”text / css“/&gt;
baseurl?&gt; / templates / template?&gt; /css/style.css“type =”text / css“/&gt;
baseurl?&gt; / templates / template;?&gt; /css/ie_style.css"rel =“stylesheet”type =“text / css”/&gt; baseurl?&gt; / templates / template;?&gt; /css/ie7only.css"rel =“stylesheet”type =“text / css”/&gt; baseurl?&gt; / templates / template;?&gt; /javascript/ie_png.js“&gt;
答案 0 :(得分:1)
你找到了问题吗?看看你的CSS代码,我发现了一个潜在的问题:
background:url(..\images\main-bg.jpg)
我认为你应该使用正常斜线而不是Windows样式反斜杠!请尝试以下方法:
background:url(../images/main-bg.jpg)