- Posts: 121
- 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
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....
- FreeThinker
-
Topic Author
- Offline
- Senior Member
-
Less
More
16 years 3 months ago - 16 years 3 months ago #38450
by FreeThinker
[SOLVED] :: Signature...increase....larger.... was created 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):
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.
16 years 3 months ago #38454
by sozzled
Blue Eagle vs. Crypsis reference guide
Read my blog and
Replied by sozzled on topic Re:Signature...increase....larger....
Is this a request for help with the standard Kunena component, or is this a request for help for the
JoniJnm variant
? :S
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
- FreeThinker
-
Topic Author
- Offline
- Senior Member
-
Less
More
- Posts: 121
- Thank you received: 0
16 years 3 months ago #38504
by FreeThinker
Replied by FreeThinker on topic Re:Signature...increase....larger....
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
*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
Please Log in or Create an account to join the conversation.
16 years 3 months ago #38507
by sozzled
Blue Eagle vs. Crypsis reference guide
Read my blog and
Replied by sozzled on topic Re:Signature...increase....larger....
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.
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.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
16 years 3 months ago - 16 years 3 months ago #38715
by JoniJnm
Replied by JoniJnm on topic Re:Signature...increase....larger....
FreeThinker, lib/kunena.parser.php
By
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>";
}
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.
- FreeThinker
-
Topic Author
- Offline
- Senior Member
-
Less
More
- Posts: 121
- Thank you received: 0
16 years 3 months ago - 16 years 3 months ago #38722
by FreeThinker
Replied by FreeThinker on topic Re:Signature...increase....larger....
Hey Joni
Replaced the existing code by this code, you suggested:
...in the file lib/kunena.parser.php (line 368)
And it's ok now.
Thanks a lot
Cheers
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