Joomla 2.5 テンプレートを作成しました。このサイトで見ることができます: www.ranfar.com.
サイドバーのコードを見てください。今では、私はそのようなものを持っています:
<div id="sidebar">
<!-- Here starts the first widget -->
<h3>Widget title</h3>
<ul>......... <!-- Module content --> ..........</ul>
<!-- Here starts the second module -->
<p>.... <!-- Second module content --> .........</p>
</div>
ご覧のとおり、ウィジェットごとに個別のボックスはありません。次のようなものが欲しいです:
<div id="sidebar">
<!-- Here starts the first module -->
<div class="sidebar-module-box">
<h3>Module title</h3>
<ul>......... <!-- Module content --> ..........</ul>
</div>
<!-- Here starts the second module -->
<div class="sidebar-module-box">
<p>.... <!-- Second module content --> .........</p>
</div>
</div>
このようにして、モジュール ボックスのクラスのスタイルを設定できます。どうすればそのようなテンプレートを実現できますか? どこに追加すればよいですか?これは、サイドバーを生成する index.php にあるコードです。
<?php if($this->countModules('ranfar-rightsidebar')) : ?>
<div id="right-sidebar" class="float-right">
<jdoc:include type="modules" name="ranfar-rightsidebar" style="sidebar" />
</div>
<?php endif; ?>