- Posts: 3
- Thank you received: 0
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 Adjust Default-Ex template; remove Info-Bar
Today I migrated from FB to Kunena and started with some modifications. I want to make the "Categories"-view as clean as possible. The ony thing that remains to be deleted is the Forum-Title Bar (fb_blocktable?).
On this site it contains the text
"Kunena - To Speak!
Welcome to Kunena! The next Generation Joomla native Forum component."
Does anyone know how to remove this coloured bar?
Thanks for your help, regards,
Mike
Please Log in or Create an account to join the conversation.
div#fb_topmenu{
display: none;
}
If you want to remove the Welcome box (with Avatar etc), a little hack in profilebox is necessary. ->
www.kunena.com/forum?func=view&catid=50&id=4119#4168
and for the shrink.gif:
#Kunena #Kunena_top td img.hideshow {
background:#5182A4 none repeat scroll 0 0;
display:none;
}
And the box below is a div with id fb_forum-pathway
Use firebug, this helps to find nearly all.
Please Log in or Create an account to join the conversation.
thanks for your reply, it's very hard for me to describe what I want, therefore I included a screenshot this time
What I meant was that I want to delete the orange/red-bar saying " Arti-Forum" in the screenshot. As you can see I already managed to delete a few other parts by browsing through this forum (and using the Web Developer Toolbar in FF)
Thanks again, regards,
Mike
Please Log in or Create an account to join the conversation.
Line 98-132 (ca.)
<!-- <tr>
<th colspan = "5" align="left">
<div class = "fb_title_cover fbm" >
<?php
// echo '<a class="fb_title fbl" href="' . sefRelToAbs(KUNENA_LIVEURLREL . '&func=showcat&catid=' . $objCatInfo->id) . '">' . $objCatInfo->name . '</a>';
echo CKunenaLink::GetCategoryLink('showcat', $objCatInfo->id, stripslashes($objCatInfo->name), $rel='follow', $class='fb_title fbl');
?>
<?php
if ($objCatInfo->description != "") {
echo '' . stripslashes($objCatInfo->description) . '';
}
?>
</div>
<img id = "BoxSwitch_<?php echo $objCatInfo->id ; ?>__catid_<?php echo $objCatInfo->id ; ?>" class = "hideshow" src = "<?php echo KUNENA_URLIMAGESPATH . 'shrink.gif' ; ?>" alt = ""/>
</th>
</tr> -->
file listcat.php (components/com_kunena/template/default_ex) comment out with <!-- -->
line 186-199 (ca.)
<!-- <tr>
<th colspan = "5">
<div class = "fb_title_cover fbm" >
<?php
echo CKunenaLink::GetCategoryLink('listcat', $cat->id, stripslashes($cat->name), 'follow', $class='fb_title fbl');
if ($cat->description != "") {
echo '' . stripslashes($cat->description) . '';
}
?>
</div>
<img id = "BoxSwitch_<?php echo $cat->id ; ?>__catid_<?php echo $cat->id ; ?>" class = "hideshow" src = "<?php echo KUNENA_URLIMAGESPATH . 'shrink.gif' ; ?>" alt = ""/>
</th>
</tr> -->
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.