Kunena 7.0.2 Released

The Kunena team has announce the arrival of Kunena 7.0.2 [K 7.0.2] in stable which is now available for download as a native Joomla extension for J! 5.3.x/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

Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.

Question BB-Codes Pictures Problem!

More
16 years 3 months ago #33032 by Frankyy
(my english is bad) :D

Hi,

i got a Kunema Forum installed on Joomla, but if somebody post Pictures with BB-Code, the Pictures are sorted like this:

Picture!

Picture!

Picture!


but i wanna have them like this:

Picture! Picture! Picture!

I hope u understand what i mean! :)

How can i do this!

Frankyy

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

More
16 years 3 months ago #33036 by fxstein
Franky,

I fear this is a by-product of the IE8 image width work around. IE8 has a bug that makes the layout of the forum to break as soon as an image is added. All other browsers work fine. In order to make IE8 work we had to put div's around all images, which prevents them to be in a single line.

If anybody comes up with another workaround for IE8 that prevents the layout to get broken and allow for images in the same line I would be very interested to see it.



vs







Sorry I don't have better answer at this point in time. The IE8 bug has been an increasing annoyance for lots of our users and is posted all over the internet - only MS has not gotten it yet. It is a shame we have to limit the capabilities of our software to make it work with a broken browser.

fxstein

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

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

More
16 years 3 months ago #33043 by Frankyy
But it works on Fireboard!

I upgraded to Kunena and the pictures are sorted funny now! hmmm...

Is where really no possibilily to fix this! I use Firefox!

Frankyy

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

More
16 years 1 month ago #39588 by BaB
Replied by BaB on topic Re:BB-Codes Pictures Problem!
I have the same problem. Its crucial for my forum, to be able to see the pictures in a way:

Pictures, Pictures, Pictures.

Have anyone found the solution?

Thank you very much.

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

More
16 years 3 weeks ago #39877 by BaB
Replied by BaB on topic Re:BB-Codes Pictures Problem!
Damn.
The last version the picture thing was working right, was the 1.5.6 version.

Do you want to say, its not being repaired through the 3 updates? ... omg! :(

Does anyone have installation on 1.5.7 version? Or did find the solution for the actuall 1.5.9 version?

Thank you very much in advance for ANY input.

Marek

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

More
16 years 3 weeks ago #39888 by xillibit
Hello,

open the file components\com_kunena\lib\kunena.parser.php and replace the following line 375 to 383 :
Code:
if($task->autolink_disable == 0) { // This part: <div style=\"table-layout:fixed; display:table; width:100%\"> ... </div> compliments of IE8 $tag_new = "<div style=\"table-layout:fixed; display:table; width:100%\"><a href='".$tempstr."' rel=\"lightbox\"><img src='".$tempstr.($imgtagsize ?"' width='".$imgmaxsize:'')."' style='max-width:".$imgmaxsize."px; ' alt='' /></a></div>"; } else { // This part: <div style=\"table-layout:fixed; display:table; width:100%\"> ... </div> compliments of IE8 $tag_new = "<div style=\"table-layout:fixed; display:table; width:100%\"><img src='".$tempstr.($imgtagsize ?"' width='".$imgmaxsize:'')."' style='max-width:".$imgmaxsize."px; ' alt='' /></div>"; }

by this :
Code:
if($task->autolink_disable == 0) { // This part: <div style=\"table-layout:fixed; display:table; width:100%\"> ... </div> compliments of IE8 $tag_new = "<a href='".$tempstr."' rel=\"lightbox\"><img src='".$tempstr.($imgtagsize ?"' width='".$imgmaxsize:'')."' style='max-width:".$imgmaxsize."px; ' alt='' /></a>"; } else { // This part: <div style=\"table-layout:fixed; display:table; width:100%\"> ... </div> compliments of IE8 $tag_new = "<img src='".$tempstr.($imgtagsize ?"' width='".$imgmaxsize:'')."' style='max-width:".$imgmaxsize."px; ' alt='' />"; }

I don't provide support by PM, because this can be useful for someone else.

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

Time to create page: 0.260 seconds