在Joomla上显示图像

时间:2016-04-26 11:48:43

标签: joomla

我似乎无法在Joomla中显示我的图像。以下是我的代码示例:

<a href="/img/Zaalvoetbaltornooi SKLA 2.jpg" rel="shadowbox"><img src="/img/Zaalvoetbaltornooi SKLA 2.jpg" width="200px" height="250px" alt="Fuif SLKA" id="eventskla" />

正如您所看到的,它也使用了不起作用的shadowbox。这是我的文件夹的屏幕截图:

enter image description here

templateDetails.XML的截图:

enter image description here

谁能告诉我自己做错了什么? Joomla中的选项是错误还是错误的代码?

2 个答案:

答案 0 :(得分:3)

我发现了:我使用了'普通'的编码方式,但你必须使用的代码就是这个:

<img src="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/images/myimage.png" alt="Custom image" class="customImage" />

然后只需更改您在Joomla中使用的地图和图像(例如/img/base.jpg)。

答案 1 :(得分:0)

就像一个友好的提示,我喜欢创建一个名为“tpath”的变量,它是模板的路径。它使我在模板中写入的路径更短。我只是在头部创建变量:

$tpath = $this->baseurl.'/templates/'.$this->template;

现在,编写模板URL所需要做的就是:

href="<?php echo $tpath; ?>/...