Kunena 7.0.8 Released

The Kunena team has announce the arrival of Kunena 7.0.8 [K 7.0.8] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x./6.1.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 must relate to a currently supported version of Kunena. If you are unsure what is the current supported version of Kunena, please go to the download page.

If you are having problems then, for your own benefit, it would save us all a lot of time if you would kindly post your configuration report when you ask for help from this forum. If you do not post your configuration report we will not ask you for it but you will probably not get your problem solved, either.

Question Error following operating system migration

More
3 weeks 3 days ago #235153 by Gindi
Yesterday I upgraded my operating system from OpenSUSE Leap 15.6 to OpenSUSE Leap 16.0.All programmes and applications are working as they should; I only have a problem with the text and replies in the Kunena forum. This only affects posts written by users in the editor window. I use the CKEditor, but I have the same problem with the SCEditor. It affects not only the local backups but also the text on the live site.If I type “Today is a very nice day” in the editor, after saving it appears as “Today   is   a   very   nice   day”.Everything else outside the editor window is displayed normally.When I visit the Kunena forum online, the entire forum is affected by these long spaces between words.On the Joomla forum and the Joomla website, everything is normal.Could this be because OpenSUSE Leap 16.0 no longer supports 32-bit applications or functions?I haven’t found anything on how to adjust the spacing between words either.At the moment, I’m at a loss.Does anyone have any ideas?Regards, gindi 

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

More
2 weeks 3 days ago - 2 weeks 3 days ago #235190 by Gindi
I’ve found the problem with the stretched text.
In the kunena.css file, there is the following entry
#kunena.layout .kmsg {
margin: 20px 0;
font-family: ‘Segoe UI’, ‘Segoe UI Emoji’, ‘Segoe UI Symbol’, Helvetica, Arial, sans-serif;
word-wrap: break-word;
}
If I delete the entry `font-family: ‘Segoe UI’, ‘Segoe UI Emoji’, ‘Segoe UI Symbol’, Helvetica, Arial, sans-serif;`, the text is displayed normally.
However, this is not a permanent solution because the `kunena.css` file is only in the cache.
‘media/kunena/cache/aurelia/css/kunena.css’
You can find this entry by right-clicking within the highlighted text and selecting “Inspect (Q)”. It does not appear when you press F12.
Is there a way to permanently remove the incorrect font-family?
 
Last edit: 2 weeks 3 days ago by Gindi.

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

More
2 weeks 3 days ago #235191 by Leen
Hallo Gindi,

ChatGPT say;
suggested making an override in the Joomla template

e.g. with
Code:
#kunena.layout .kmsg { font-family: inherit !important; }
Or, if you want to explicitly use the normal system font:
Code:
#kunena.layout .kmsg { font-family: Arial, Helvetica, sans-serif !important; }
Maby it work So you could try that out?Where to put itIf your Joomla template has a Custom CSS / User CSS facility, put it there.For example, depending on your template, it may be something like:
  • Code:
    media/templates/site/YOUR_TEMPLATE/css/user.css
  • Code:
    custom.css
  • Code:
    user.css
Do not put it in:
Code:
media/kunena/cache/aurelia/css/kunena.css
because that file is generated again.

With kind regards
Leen
The following user(s) said Thank You: Gindi

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

More
2 weeks 2 days ago - 2 weeks 2 days ago #235196 by Gindi
@Leen The suggestion was good, but in
Code:
media/templates/site/cassiopeia/css/user.css
colours are mainly assigned.I then searched my backup version for the term
Code:
font-family
. A lot of directories were listed where this term appears.I found what I was looking for in one directory:
Code:
components/com_kunena/template/aurelia/assets/scss/general.scss
From line 424 onwards, I found this:
Code:
.kmsg { margin: 20px 0; font-family: ‘Segoe UI’, ‘Segoe UI Emoji’, ‘Segoe UI Symbol’, Helvetica, Arial, sans-serif; word-wrap: break-word; }
I then removed ‘Segoe UI’ from the font-family list so that only ‘Helvetica’, ‘Arial’ and ‘sans-serif’ remained, and saved the file.
User posts are now displayed in plain text again.
This is currently a stopgap solution for a backup, but the problem exists on my website as well as on the Kunena website.
It must still be related to my operating system in some way. 
 
Last edit: 2 weeks 2 days ago by Gindi.

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

More
1 week 6 days ago - 1 week 6 days ago #235199 by Gindi
If I change the font family, the text is displayed normally.
From:
.kmsg { margin: 20px 0; font-family: ‘Segoe UI’, ‘Segoe UI Emoji’, ‘Segoe UI Symbol’, Helvetica, Arial, sans-serif;
Changed to
:.kmsg { margin: 20px 0; font-family: Helvetica, Arial, sans-serif, ‘Segoe UI’, ‘Segoe UI Emoji’, ‘Segoe UI Symbol’;
 The web browser selects the font from left to right. 
 
Last edit: 1 week 6 days ago by Gindi.

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

More
1 week 2 days ago #235201 by Pinkeltje
The correct way to change is by following this instruction .
But I think the Segoe can be removed from the core and I will make a pull request on Github. 
The following user(s) said Thank You: Gindi

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

Time to create page: 0.298 seconds