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 IE8 problem with width
I have a new appriciation for why so many people hate IE and whoever is behind it. Only a semi-monopoly gets away with that many bugs.
Long story short through research and with the help of Ron we found a work around for IE8 to avoid its bug and make the images fit into the layout.
The fix is now going into 1.5.7. We are about to release it to the public.
Sorry for the delay.
We love stars on the Joomla Extension Directory .
Please Log in or Create an account to join the conversation.
/Yxos, Kunena Translator, da-DK.
Overvej at abonnere på kategorien www.kunena.org/forum/48-Danish
Please Log in or Create an account to join the conversation.
My websites: AquaInfo.org | AquaInfo.nl
Please Log in or Create an account to join the conversation.
Hope this helps!
We love stars on the Joomla Extension Directory .
Please Log in or Create an account to join the conversation.
Link to the forum: forum
My websites: AquaInfo.org | AquaInfo.nl
Please Log in or Create an account to join the conversation.
I had posted a fix for it some times ago.
So here the complete fix. Open and edit the file kunena.forum.css (components/com_kunena/template/default_ex/kunena.forum.css)
and delete this old code (it is on the end of css file):
/* Fix for Internet Explorer 6*/
*html div.msgtext {
width:500px;
overflow:hidden!important;
word-wrap: break-word;
}
/*Fix for Internet Explorer 8*/
div.msgtext {
width:/*\**/500px\9;
overflow:/*\**/hidden!important\9;
word-wrap:/*\**/break-word\9;
}
and insert this new code at the end of the css file:
/* Fix for Internet Explorer 6*/
#Kunena *html div.msgtext, #Kunena div.msgsignature {
width:520px;
overflow:hidden!important;
word-wrap: break-word;
}
/*Fix for Internet Explorer 8*/
#Kunena div.msgtext, #Kunena div.msgsignature {
width:/*\**/520px\9;
overflow:/*\**/hidden!important\9;
word-wrap:/*\**/break-word\9;
}
#Kunena table.fb_review_table {
table-layout:fixed;
}
Please Log in or Create an account to join the conversation.