Kunena 7.0.4 Released

The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0

Question How to Adjust Column Widths

More
17 years 2 weeks ago #12387 by bubbawubba
I would like to change the FORUM and LAST POST column widths on the main Categories pages.

I would like to decrease the FORUM column

I would like to increase the LAST POST column so that I can show more of the post title.

Thanks in advance for your help

Please Log in or Create an account to join the conversation.

More
17 years 1 week ago #12658 by bubbawubba
Using FireBug I found the following - but I have no clue in which file I can make the adjustments. Can anyone tell me which file I can make the changes?


<tr id="fb_cat6" class="fb_sectiontableentry2">
<td class="td-1" align="center">
</td>
<td class="td-2" align="left">
</td>
<td class="td-3 fbm" align="center">0</td>
<td class="td-4 fbm" align="center"> 0 </td>
<td class="td-5" align="left"> No Posts </td>
</tr>

Please Log in or Create an account to join the conversation.

More
More
17 years 1 week ago #12665 by bubbawubba
Thanks ... but

1. First Point = This is for the wrong set of pages. I am interested in the main forum page which shows all the categories and sections. For example on this page
www.kunena.com/forum?func=listcat
I want to make FORUMS smaller and LAST POST wider. I think the user is more interested in the post and getting more info there rather than the FORUMS column.

2. Second Point = Really nothing there that helps me.

3. Third Point = has nothing to do with this issue that I am having.


I still have no solution on how to change the kunena column widths

Please Log in or Create an account to join the conversation.

More
17 years 1 week ago #12668 by grumblemarc
Sure you do. Get FireBug and/or Web Developer tools for Firefox. If you don't know how to use Firebug there are tutorials on Youtube that can explain it's usage. If you plan on altering templates you need to know how these things work. Little by little you're asking someone to help you redesign your whole template. Might as well learn these tools and know how to do it on your own.

Kinda along the lines of teaching a man to fish...

We love stars on the Joomla Extension Directory . :-)

Please Log in or Create an account to join the conversation.

More
17 years 1 week ago #12670 by sozzled
The column widths are defined in the file listcat.php (depends on which Kunena template you're working with)
Code:
<tbody id = "catid_<?php echo $cat->id ; ?>"> <tr class = "fb_sth fbs "> <th class = "th-1 <?php echo $boardclass; ?>sectiontableheader" width="1%">&nbsp;</th> <th class = "th-2 <?php echo $boardclass; ?>sectiontableheader" align="left"><?php echo _GEN_FORUM; ?></th> <th class = "th-3 <?php echo $boardclass; ?>sectiontableheader" align="center" width="5%"><?php echo _GEN_TOPICS; ?></th> <th class = "th-4 <?php echo $boardclass; ?>sectiontableheader" align="center" width="5%"> <?php echo _GEN_REPLIES; ?> </th> <th class = "th-5 <?php echo $boardclass; ?>sectiontableheader" align="left" width="25%"> <?php echo _GEN_LAST_POST; ?> </th> </tr>

Please Log in or Create an account to join the conversation.

Time to create page: 0.294 seconds