Search results

  1. I

    Theme Coding Help

    CSS code So the only problem you have now is the CSS, correct? Here it is the CSS from twenty twelve /* Navigation Menu */ .main-navigation { margin-top: 24px; margin-top: 1.714285714rem; text-align: center; } .main-navigation li { margin-top: 24px; margin-top...
  2. I

    Theme Coding Help

    WP Menu Code First, back up your theme. 1. Paste this on functions.php function register_my_menus() { register_nav_menus( array( 'header-menu' => __( 'Header Menu' ) ) ); } add_action( 'init', 'register_my_menus' ); 2. Put this on our header.php inside menu div (or whatever it's...
Back
Top