• Hi

    The change to the customizer from 1.82 to 1.83 has added a lot of extra control over font sizes, spaces, etc, which is excellent. However, the ability to change the menu item text size seems to have disappeared and the menu item text size has reverted to the default. Is this an oversight, or am I looking in the wrong place?

    Regards
    Steve

Viewing 14 replies - 16 through 29 (of 29 total)
  • You’re welcome @isabelleroger!

    Please let us know in a new topic if you have any further questions, or if we can provide you with any other assistance.

    Regards,
    Kharis

    Hello,
    my question regarding that is, has this happened by accident or did you want it that way? Thus i would like to know if it will be corrected with version 1.84 or do i have to work with additional code from now? Thank you in advance!
    Harry

    PS: My website: https://nonprofit-but-social.de/

    • This reply was modified 3 years, 1 month ago by harryman7.

    Hi,

    in the meantime i tried the additional CSS:

    /* ---------------------------------
    Increase size of text in main menu 
    -----------------------------------*/
    .menu-header-menu-container a { font-size: 28px !important;
    }
    

    First i put that to the child theme, then to the additional CSS customize area. Neither the first one nor the other one worked ??

    What’s wrong?

    Thanks for any hints!

    Regards, Harry

    • This reply was modified 3 years, 1 month ago by harryman7.
    Thread Starter cpcusteve

    (@cpcusteve)

    @harryman7 Just had a quick look at your website and the reason is that you’re using German as a language. The class container is “menu-haupt-navigation-container”, not “menu-header-menu-container”, so substitute that and give it another try.

    • This reply was modified 3 years, 1 month ago by cpcusteve.

    Thanks, @cpcusteve ! Unfortunately it doesn’t work. I have emptied the cache in wp-optimize plugin and as well the browser cache. Very strange.

    Thread Starter cpcusteve

    (@cpcusteve)

    @harryman7 Sorry, you must have seen my reply before I edited it. Can you take another look? It’s to do with your wordpress site being in German.

    @cpcusteve, ooops! Yes, that’s it ?? Thank youuuuu!

    • This reply was modified 3 years, 1 month ago by harryman7.

    Hello, i’m still dealing with that Sidney version 1.83. I have made the mistake to click the option “New header” instead of “Dismiss new header” . Even return to version 1.80 (with WP Rollback plugin) and then update again doesn’t lead to show me the options once again. The former choice “New header”/”Dismiss new header” doesn’t show up again. What can i do to get the newest version and dismiss the new header? Thank you in advance!

    Regards, Harry

    • This reply was modified 3 years, 1 month ago by harryman7.
    • This reply was modified 3 years, 1 month ago by harryman7.

    Hi @harryman7,

    While you’re using the latest Sydney, please try: https://www.ads-software.com/support/topic/header-not-transparent-issue-1-83/#post-14972179.

    Hope that helps.

    Regards,
    Kharis

    That helped! Thank you! ??

    Regards,
    Harry

    You’re welcome @harryman7!

    Please let us know in a new topic if you have any further questions, or if we can provide you with any other assistance.

    Regards,
    Kharis

    Hi @kharisblank, thank you! Since you ask here specificly, i would like to know, wheather the menu size was only forgotten in the current version or was that deliberately? Thus, the next update will consider that or not? Thank you.

    Regards, Harry

    g-nilsson

    (@gianilsson)

    @kharisblank

    Thank you so much Kharis!! These two codes helped me a lot and they work perfectly!! Many thanks!!

    add_action('wp_enqueue_scripts', 'sydney_child_menu_font_size', 9999);
    function sydney_child_menu_font_size() {
    	
    	$custom_css = '';
    	$menu_size = get_theme_mod( 'menu_size', '14' );
    	if ($menu_size) {
    		$custom_css .= "#mainnav ul li a { font-size:" . intval($menu_size) . "px; }"."\n";
    	} 
    	
    	wp_add_inline_style( 'sydney-style', $custom_css );
    	
    }

    and

    #mainnav ul li a {
      font-weight: 600;
    }
    • This reply was modified 3 years ago by g-nilsson.
    • This reply was modified 3 years ago by g-nilsson.

    You’re welcome @gianilsson!

    Please let us know in a new topic if you have any further questions, or if we can provide you with any other assistance.

    Regards,
    Kharis

Viewing 14 replies - 16 through 29 (of 29 total)
  • The topic ‘Menu Item Text Size Disappeared’ is closed to new replies.