Demo content: Karbones Theme options - Menu options - Menu Item Hover Effect Set to: none This has no effect on the default setting in the template (underline animation)
Demo content: VRJN Theme options - Menu options - Menu Item Hover Effect Set to: underline This has no effect on the default setting in the template (only the selected "background on hover" is visible)
I am experiencing this on a clean WP install with nothing but Sonaar 3.1.9 added to it, right after installing the aforementioned demo content. I'd much prefer an explanation in regard to what I could have possibly done wrong, so I can avoid doing it again ;)
You know that saying... give a man a fish / teach a man to fish.
Thanks for reporting this. This is a bug. We will fix it in a future version.
in the meantime, I have added the custom CSS to make it works with VRJN. I added the code in wp-admin > theme options > custom css. Feel free to remove the code if you dont want the underline.
Demo content: Karbones
Theme options - Menu options - Menu Item Hover Effect
Set to: none
This has no effect on the default setting in the template (underline animation)
Demo content: VRJN
Theme options - Menu options - Menu Item Hover Effect
Set to: underline
This has no effect on the default setting in the template (only the selected "background on hover" is visible)
Hi
Could you please provide me access to your wp-admin and I will gladly check the issue you have.
Thanks,
Max from the Sonaar.io Crew
I am experiencing this on a clean WP install with nothing but Sonaar 3.1.9 added to it, right after installing the aforementioned demo content. I'd much prefer an explanation in regard to what I could have possibly done wrong, so I can avoid doing it again ;)
You know that saying... give a man a fish / teach a man to fish.
Hi there,
I'd love to teach you how to fish and will do, But first, I need to check the weather and evaluate where/how we going to fish in your wp-admin
Thanks,
Max from the Sonaar.io Crew
Hi there,
Thanks for reporting this. This is a bug. We will fix it in a future version.
in the meantime, I have added the custom CSS to make it works with VRJN. I added the code in wp-admin > theme options > custom css. Feel free to remove the code if you dont want the underline.
Thanks,
Max from the Sonaar.io Crew
Hi,
add this to your custom CSS:
li.hotlink a {
color: #fff!important;
}
Thanks,
Max from the Sonaar.io Crew
Or just remove the custom JS that was in there, which ended up being the culprit. Either way, that was kind of the solution, thanks for that.
//Change menu hotlink color
if ($(window).width() > 1160) {
$('.classic-menu .hotlink>a').attr('data-color-initial', $('.classic-menu .hotlink>a').css('color') );
$('.classic-menu .hotlink>a').css('color', iron_vars.look_and_feel.color_1);
$('.classic-menu .hotlink>a').hover(
function() {
$( this ).css('color', $( this ).attr('data-color-initial') );
}, function() {
$( this ).css('color', iron_vars.look_and_feel.color_1 );
});
}
excellent Ray! You are right. Thanks
Thanks,
Max from the Sonaar.io Crew