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’,
) );