Home Forums Saraswati Blog Centering Primary Menu with Header

Viewing 3 reply threads
  • Author
    Posts
    • #1857
      aphtang
      Participant

      Hi, my website isn’t live yet so I took a screenshot and shared a GD link to it. My problem is that the primary menu links aren’t centered to the header. I use the Blogger Era theme and am novice at this whole thing so I don’t really know how to play with CSS, etc. If someone knowledgeable could suggest a code that I can just copy and paste and let me know where I should paste it, I would really appreciate it. TIA for your help!!

      https://drive.google.com/file/d/1nlsYkFIr8Lm_eJVldsxF_sH_sBDA1axr/view?usp=sharing

    • #1866
      arjun
      Keymaster

      Hello,

      Open header.php file and go to line number 134 or search this

      wp_nav_menu( array(
      ‘theme_location’ => ‘menu-1’,
      ‘menu_class’ => ‘menu list-inline’,
      ‘menu_id’ => ‘primary-menu’,

      ) );

      on menu class add text-center class after you add this then it looks like this after that save it.

      wp_nav_menu( array(
      ‘theme_location’ => ‘menu-1’,
      ‘menu_class’ => ‘menu list-inline text-center’,
      ‘menu_id’ => ‘primary-menu’,

      ) );

    • #1891
      aphtang
      Participant

      Thank you to @arjun for your help on the previous issue! Is it possible to change the font for the header (where it says EvolveLifeBlog)? How would I go about doing that?

      Thank you.

      https://drive.google.com/file/d/1nlsYkFIr8Lm_eJVldsxF_sH_sBDA1axr/view?usp=sharing

    • #1902
      arjun
      Keymaster

      Hello,

      In free version you have to edit css file for that, but in pro you will have option to change size of fonts from customizer.

      Thank you

Viewing 3 reply threads
  • You must be logged in to reply to this topic.