我的 Joomla 模板中的图像
我通过创建以下文件创建了 Joomla 模板:index.php"、"templateDetails.xml"、"images" 和 " >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;} html, 正文 { 高度:100%;} body { 背景:url(..\images\main-bg.jpg) 不重复中心顶部 #efc072;字体系列:Arial、Helvetica、sans-serif;字体大小:100%;行高:1.0625em;颜色:#968a70;}
这是基本index.php的一部分
<头> <头>
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">
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
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">
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你发现问题了吗?看看你的 CSS 代码,我发现了一个潜在的问题:
我认为你应该使用普通的斜杠而不是 Windows 风格的反斜杠!请尝试以下操作:
Did you find the problem? Looking at your CSS code I found a potential issue:
I think you should use normal slashes not the Windows style back slashes! Try the following: