If you follow the steps beneath, be sure to have a clean copy of your template_css.css and of your /components/com_content/content.php
That's only experimental!
What I did is:
1. Define new classes in the template_css.css like
Quote:
td.lead_fp {
height: 1%;
border-width: 2px;
border-style: solid;
border-color: #00DD00;
margin-top: 4px;
padding-bottom: 4px;
}
td.item_fp {
height: 1%;
border-width: 2px;
border-style: solid;
border-color: #DD0000;
margin-top: 4px;
padding-bottom: 4px;
}
|
2. Have a look at /components/com_content/content.php and find the function "BlogOutput (...)" and there: "// Leading story output"
Beneath you'll find the output for the leading story, the items and so on.
There a some "<td> definitions. Put your 'class="lead_fp"' or 'class="item_fp"' inside:
Code:
<td class="item_fp">
and you'll find
boxes around your items on the frontpage.
But that's only experimental!
Good luck
Regards
Konrad