我的 Joomla 模板中的图像

发布于 2024-09-28 11:57:05 字数 1692 浏览 4 评论 0原文

我通过创建以下文件创建了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幸福不弃 2024-10-05 11:57:05

你发现问题了吗?看看你的 CSS 代码,我发现了一个潜在的问题:

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

我认为你应该使用普通的斜杠而不是 Windows 风格的反斜杠!请尝试以下操作:

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

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)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文