我正在寻找修改 Joomla 1.5 中的“类别博客布局”。我想修改它,使偶数行右对齐,奇数行左对齐。我也想对文章标题执行此操作,因此在文章正文中使用 html 或 css(参数中的页面类后缀)不是一个选项,因为它只会影响以下两个生成的表格 html(contentpaneopen)每个博客项目文本的文件:
\components\com_content\views\category\tmpl\blog.php \components\com_content\views\category\tmpl\blog_item.php
我猜,我需要在我的自定义模板中重载这两个文件来实现我想要的。问题是我看不到如何访问 blog_item.php 正在处理的行号。
我发现ContentViewCategory::getItems
in\components\com_content\views\category\view.html.php
有以下几行代码:
$item->odd = $k;
$item->count = $i;
但我不知道如何访问这些。
有任何想法吗?
PS:这是我想要实现的布局:
---------------------------------------------------
| -------------- ---------------------------- |
| | | | | |
| | | | | |
| | row 1 | | row 1 text | |
| | Image | | | |
| | | | | |
| | | | | |
| |------------| |--------------------------| |
--------------------------------------------------|
---------------------------------------------------
| |--------------------------| |--------------| |
| | | | | |
| | | | | |
| | row 2 text | | row 2 | |
| | | | Image | |
| | | | | |
| | | | | |
| |--------------------------| |--------------| |
--------------------------------------------------|
---------------------------------------------------
| -------------- ---------------------------- |
| | | | | |
| | | | | |
| | row 3 | | row 3 text | |
| | Image | | | |
| | | | | |
| | | | | |
| |------------| |--------------------------| |
--------------------------------------------------|