Kunena 6.2.6 released

The Kunena team has announce the arrival of Kunena 6.2.6 [K 6.2.6] which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x. This version addresses most of the issues that were discovered in K 6.1 / K 6.2 and issues discovered during the last development stages of K 6.2

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.

Solved How to modify the EDIT button in My Profile

More
10 years 10 months ago - 10 years 10 months ago #1 by Nemo10
On my site this is what you see.. ( CLICK on it for full width display, please)




The Edit button is not very obvious and I'd like to change it's size and colour.
I'd like it to be a bit larger and WHITE, if possible.. maybe GREEN when clicked.
I think the colour can be tweaked via the template but that's a difficult (for me) exercise for some reason, I can't figure out the field descriptions very well. :blink:

Thanks again..



This message contains confidential information

Database collation check: The collation of your table fields are correct

Joomla! SEF: Enabled | Joomla! SEF rewrite: Disabled | FTP layer: Disabled |

This message contains confidential information
htaccess: Exists | PHP environment: Max execution time: 30 seconds | Max execution memory: 128M | Max file upload: 50M

Kunena menu details:

Warning: Spoiler!

Joomla default template details : ShipShapeRC_6_20 | author: Mike Fields | version: 1.0 | creationdate: Unknown

Kunena default template details : Blue Eagle 2.0 | author: Kunena Team | version: 3.0.0 | creationdate: 2013-05-15

Kunena version detailed: Kunena 3.0.0 | 2013-05-15 [ Wanga ]
| Kunena detailed configuration:

Warning: Spoiler!
| Kunena integration settings:
Warning: Spoiler!
| Joomla! detailed language files installed:
Warning: Spoiler!

Third-party components: None

Third-party SEF components: None

Plugins: None

Modules: Kunena Search 3.0.0


Oh for a neat solution...
Attachments:
Last edit: 10 years 10 months ago by Nemo10. Reason: clean up

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

More
10 years 10 months ago #2 by BickyBik
I think the element you want to edit is called "#Kunena h2 span.kheadbtn a" and is in kunena.forum-min.css
To find it, simply search it with the search tool of the editor you're using, it will bring you directly to that part. (minified CSS files are not easy to read)

Once you found it, just add/edit the properties you want.

You'll probably have something like this:
Code:
#Kunena h2 span.kheadbtn a{font-size:11px!important;line-height:23px;border:1px solid;padding:1px 3px 3px;}

Just add what you want, like this:
Code:
#Kunena h2 span.kheadbtn a{color:#fff;font-size:15px!important;line-height:23px;border:1px solid;padding:1px 3px 3px;}

If you want to edit the style when the cursor is on it, it's the next declaration in code:
Code:
#Kunena h2 span.kheadbtn:hover a{text-decoration:none;border:1px solid;}
"hover" is a pseudo-class that set the style for element when the cursor is over it.

And finally, if you want to set style when clicked, you need to add a new declaration, because it doesn't already exists. It is very similar to the other two. It uses the pseudo-class "focus" which is very similar to "hover" so you have to add something like:
Code:
#Kunena h2 span.kheadbtn:focus a{background:#76d8fb;}

Here I set the background to a very light blue when clicked.

Open Source is a bit like Communism with charm of Maryline.

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

More
10 years 10 months ago - 10 years 10 months ago #3 by Nemo10
Thanks!

That WAS a bit hairy, for me, all those acres of code, tight packed..

Although I now have a larger font that is great, it is still red, which is also Ok, but it doesn't have the "hover" effect.

I'm sure I have misread your instructions so here is the string from the original code plus what I have appended.
I expect I have added too much somewhere. :pinch:

#Kunena h2 span.kheadbtn a{font-size:11px!important;line-height:23px;border:1px solid;padding-top:1px;padding-bottom:3px;padding-left:3px;padding-right:3px}#Kunena h2 span.kheadbtn:hover a{text-decoration:none;border:1px solid}#Kunena h2 span.kheadbtn a{color:#fff;font-size:15px!important;line-height:23px;border:1px solid;padding:1px 3px 3px;}#Kunena h2 span.kheadbtn:hover a{text-decoration:none;border:1px solid;}#Kunena h2 span.kheadbtn:focus a{background:#76d8fb;}

Here's the current look.. Clicking on Edit does go to the edit window and Edit turns to Back.




If you could correct my error/s I would be able to paste in place of what I have.

Still, it's pretty well what I was looking for, and others will be able to see.

Oh for a neat solution...
Attachments:
Last edit: 10 years 10 months ago by Nemo10. Reason: Goofed

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

More
10 years 10 months ago #4 by mukyz
#Kunena h2 span.kheadbtn:hover a
this is not correct
it should be

#Kunena h2 span.kheadbtn a:hover

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

More
10 years 10 months ago #5 by Nemo10
Thanks for that.. works perfectly..

I really appreciate the help :)

Oh for a neat solution...

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

More
10 years 9 months ago - 10 years 9 months ago #6 by Nemo10
Just noticed something about this.

I was testing a new "registered" user in his Profile and noticed that the Edit button was a indistinct EDIT , where as using the above code it was red.

I checked the css file again and it seemed to correct with fff as the font colour, but changing it to anything else had no apparent affect on the EDIT colour.

Turns out that when I log myself in as Admin I see it as red, login in as a registered user and its this darkish green.

I do know that when logged in my "rank" is shown in red, as is my online listing ..

Seems there is a connection to this somehow.

How can I get the EDIT in PROFILE to appear RED to all registered users, as well as Admins.? Guests do not have access to profiles.

Thanks

Oh for a neat solution...
Last edit: 10 years 9 months ago by Nemo10.

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

More
10 years 9 months ago - 10 years 9 months ago #7 by sozzled
The colour of the Kunena profile edit link should not be different for administrators compared with other users. The colour of the Kunena profile edit link is dependent on CSS. CSS loads independently of whether you are logged-in as an administrator or as a non-privileged registered user.

Perhaps the difference is due to using a different web browser or accessing your site from a different PC? Perhaps the difference is that the browser you were using in these different cases has a different cached version of the CSS? Perhaps forcing the browser to load a new version of the CSS files will resolve the problem. Have you tried clearing and reloading your browser cache?
Last edit: 10 years 9 months ago by sozzled.

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

More
10 years 9 months ago #8 by Nemo10
I have 3 different Admins and 3 different Registered users that I can test login, and in any combination, and on any PC (I use a laptop to double check) and every time I come in as an Admin its RED and as Registered its green, even one after the other. Using F5 just refreshes the screen but changes nothing. If there is no correlation as I'm suggesting then why the precise colour change exactly as to user type.?

I understand what you are saying but I can only report what I see and how I do it.

Several members have confirmed that they all see the blue/green EDIT, not the red. One tested it on his Mac. They are located throughout the world.

I've also found that changing the colour code kheadbtn a{color:#fff; (in the css file does not appear to change the button. I cannot even guess as to why.

Can you suggest what else I might check?

This is the path to the template I checked

public_html/shipshaperc/components/com_kunena/template/blue_eagle/css/kunena.forum-min.css

Oh for a neat solution...

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

More
10 years 9 months ago #9 by sozzled
As I am sure you would know, the only way that any of us can check (or double-check) what you have done, is to have access to two accounts: (a) an administrator account and (b) an ordinary registered user's account. Furthermore, we need to spend time doing this checking work.

Does this really matter? Maybe you are loading different site templates based on who is logging in? I don't know; the possibilities are enormous. The only point that I want to make is simply this:

If you want to change any colours [to the Kunena template (obviously)] and make them stick and hold fast, then change the colours by adding extra rules to the end of your Joomla site template CSS file. IF you start messing around with ../components/com_kunena/template/blue_eagle/css/kunena.forum-min.css then, in my opinion, I think you are making an error of judgement. Yes, you can change ../components/com_kunena/template/blue_eagle/css/kunena.forum-min.css and yes, it is possible for things to still work after making those changes but the more likely outcome is that you will break things apart.

Therefore, in conclusion, the only sure way that we can get to the bottom of this mystery is to view the site in exactly the same way as other users of your community view the site. In order to do that we would need access to accounts on yours site that permit us to see the "Edit" link. Last, but not least, we need to make time to do this when it's convenient.

We do not have this issue here at www.kunena.org .

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

More
10 years 9 months ago #10 by Nemo10
Thank you

I can assure you I don't change anything without backing up the file first, and so far only as directed in this topic. . Before I do anything outside of Control Panel I back up the site. The site uses just the default template, I wouldn't know where to get any others, nor have any need to.
There are only 2 levels of forum access, Admin and Registered. Control over what is viewable is purely the options for categories in Control Panel. Both see all categories, Guests see about 60%.

Is it worth it? Probably not since it is only a minor nuisance and can be covered by a mention in FAQ which all new members are directed to.

I'd be happy to supply the two logins you need but as you say, it's all time and you no doubt have better things to do with your time since it is of a very minor nature..

I just thought it was worth mentioning.

Oh for a neat solution...

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

Time to create page: 0.421 seconds