这是joomla的模板
+-----------------------------------------+
| |
| position: top |
| |
+-----------------------------------------+
我定位模块“搜索”到顶部,“toplinks”到顶部,编辑后css“搜索”到float: left;
和“toplinks”到float: right;
,它就像这样工作
之后我想提供一些其他类似的图片或主页链接或其他任何内容,如上图所示
我想在没有编辑index.php的情况下这样做,因为我需要在其他页面而不是首页上这段时间。我想从joomla那里做。怎么做 ?任何想法,我应该制作横幅还是其他东西。
我尝试制作模块 - >自定义html但无法完成这个职位。
答案 0 :(得分:0)
如果只是您想要添加的菜单项,请通过管理员后端的菜单管理器创建一个新菜单,然后为其创建一些菜单项。完成后,转到模块管理器,创建一个新模块并将类型设置为“菜单”。然后,您可以选择您创建的菜单,并将位置设置为“toplinks”。
答案 1 :(得分:0)
修改模板的index.php
以在标题中包含3个不同的模块位置,例如
<强> my_template /索引,PHP 强>
...
<div id="header">
<div id="topbar">
<div id="topbar-left"><jdoc:include type="modules" name="topbar-left" /></div>
<div id="topbar-right"><jdoc:include type="modules" name="topbar-right" /></div>
<?php if ($this->countModules('topbar-teaser') > 0) : ?>
<div id="topbar-teaser"><jdoc:include type="modules" name="topbar-teaser" /></div>
<?php endif; ?>
</div>
</div>
...
<强> CSS 强>
#topbar-left { float: left; }
#topbar-right { float: right; }
#topbar-teaser { clear: both; }
<强>模块强>
将您的图片放入自定义HTML模块,并将其发布到您想要的任何网页上的topbar-teaser
位置。