Hi @snowme
1. Customize / Presentation / Menu
Primary Menu Automatic Responsive. set to No
Publish
2. Customize / Additional CSS
Try add this style
@media screen and (max-width : 640px){
#top .raindrops-mobile-menu {
display:none!important;
}
#top #access{
display:block!important;
}
}
Thread Starter
snowme
(@snowme)
Sorry, I don’t want to remove the Mobile Menu. I want to remove the title attribute from span.raindrops-nav-menu-expand and span.raindrops-nav-menu-shrunk
please do not worry. I understand.
It is necessary to write a filter with PHP.
Add the following code to functions.php.(with child theme)
<?php
add_filter( 'raindrops_nav_menu_primary_html', 'my_stop_tooltip' );
function my_stop_tooltip( $html ) {
$replace_pairs = array ( 'raindrops-nav-menu-expand' => 'raindrops-nav-menu-expand no-tooltip',
'raindrops-nav-menu-shrunk' => 'raindrops-nav-menu-shrunk no-tooltip' );
return strtr( $html, $replace_pairs );
}
?>
Thank you.
-
This reply was modified 8 years, 4 months ago by
nobita.
Thread Starter
snowme
(@snowme)
Thank you Nobita. That worked!