- Posts: 7245
- Thank you received: 566
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 Insert Image Buttom doesn't work
We are hiding the real file input area ubder our own textbox. This is because you cannot change looks from the file input, and it looks different in every browser. What happens in here is that the visible controls have been moved by RTL template, but the hidden input isn't.
So the solution is to change some CSS.
Please Log in or Create an account to join the conversation.
Matias wrote: I know what is happening. It's RTL issue:
We are hiding the real file input area ubder our own textbox. This is because you cannot change looks from the file input, and it looks different in every browser. What happens in here is that the visible controls have been moved by RTL template, but the hidden input isn't.
So the solution is to change some CSS.
According to your advice, I found the problem is about this css element:
#Kunena .kfile-hide {
height:23px;
overflow:hidden;
position:relative;
width:100px;
}
when I remove the postion:relative attribute the other buttons works properly but not the insert button, so I think we should add css attribute for each buttons
I've tried to examine different css for .kfile-hide but does not work, do have any idea as a solution?
Please Log in or Create an account to join the conversation.
#Kunena .kfile-input {
font-size:23px;
right:0;
opacity:0;
position:absolute;
top:0;
}
right: 0 should be replace to left: 0
Please Log in or Create an account to join the conversation.
Can you help us with that? I just need the additional CSS file, which can be loaded when RTL is turned on.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.