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

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 [SOLVED] :: Signature...increase....larger....

More
16 years 3 months ago - 16 years 3 months ago #38450 by FreeThinker
Hey there

I dunno why when placing an image before some text in signatures....it appears the image above the text, instead of being in front of text.

This is fixed when i install the hack JuniJnm....but without it it stays as described above!

*So dunno what file is/was altered.

Can someone give some light.

Exmaple (of the issue):
Last edit: 16 years 3 months ago by FreeThinker. Reason: Issue Solved =)

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

More
16 years 3 months ago #38454 by sozzled
Is this a request for help with the standard Kunena component, or is this a request for help for the JoniJnm variant ? :S

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

More
16 years 3 months ago #38504 by FreeThinker
for the standard Kunena component ;)

*I mentioned the JoniJnm because when doing the install of it...
...it corrects this issue :)

So i'd like to know how to do this in/with the standard Kunena component!

Thanks B)

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

More
16 years 3 months ago #38507 by sozzled
The answer is basically the same as given in a similar discussion about font sizes: see Post font Larger posted a short time ago. :)

Evidently, for the JoniJnm variant, the CSS was tailored the way that you wanted it ... but I don't know specifically what changes he made.

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

More
16 years 3 months ago - 16 years 3 months ago #38715 by JoniJnm
FreeThinker, lib/kunena.parser.php
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
Code:
if($task->autolink_disable == 0) { $tag_new = "<a href='".$tempstr."' rel=\"lightbox\"><img src='".$tempstr.($imgtagsize ?"' width='".$imgmaxsize:'')."' style='max-width:".$imgmaxsize."px; ' alt='' /></a>"; } else { $tag_new = "<img src='".$tempstr.($imgtagsize ?"' width='".$imgmaxsize:'')."' style='max-width:".$imgmaxsize."px; ' alt='' />"; }
Last edit: 16 years 3 months ago by JoniJnm.

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

More
16 years 3 months ago - 16 years 3 months ago #38722 by FreeThinker
Hey Joni

Replaced the existing code by this code, you suggested:
Code:
if($task->autolink_disable == 0) { $tag_new = "<a href='".$tempstr."' rel=\"lightbox\"><img src='".$tempstr.($imgtagsize ?"' width='".$imgmaxsize:'')."' style='max-width: ".$imgmaxsize."px; ' alt='' /></a>"; } else { $tag_new = "<img src='".$tempstr.($imgtagsize ?"' width='".$imgmaxsize:'')."' style='max-width:".$imgmaxsize."px; ' alt='' />"; }

...in the file lib/kunena.parser.php (line 368)


And it's ok now.

Thanks a lot ;)

Cheers
Last edit: 16 years 3 months ago by FreeThinker.

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

Time to create page: 0.322 seconds