Viewing 15 replies - 1 through 15 (of 15 total)
  • Did you make this menu with the wp built in menu builder? If not I highly recommend it. If so it’s just a matter of dragging and dropping.

    Thread Starter hanaer

    (@hanaer)

    I am just using the regular WordPress editor. Is this what you are talking about?

    Thread Starter hanaer

    (@hanaer)

    I have done everything that the link has explained and yet I still have this problem

    be sure you have this on the place where you want to appear the nav
    <?php wp_nav_menu( array( ‘theme_location’ => ‘primary’ ) ); ?>

    and this in functions.php

    function twentyeleven_page_menu_args( $args ) {
    	$args['show_home'] = true;
    	return $args;
    }
    add_filter( 'wp_page_menu_args', 'twentyeleven_page_menu_args' );

    Thread Starter hanaer

    (@hanaer)

    Where do I put this code? In one of my pages?

    sorry my first answer was wrong.
    Your problem is the output by in-order right?. The button should be in this order HOME ABOUT US DONATE CONTACT .. ??

    if I’m correct the problem is in your css. change the float right into left in #menu li

    #menu li {float:left}

    if you still want to be align it in right just remove the float and change it to this.

    #menu li { display: inline; position:relative; }

    Thread Starter hanaer

    (@hanaer)

    where should I put all of this coding?

    Thread Starter hanaer

    (@hanaer)

    and Yes I want it to be in that order (NOT alphabetical) so use the second code? and where

    thanks

    In your style.css find the line where the #menu li placed and change the existing with this.

    #menu li { display: inline; position:relative; }

    btw style.css could be find in appearance->editor or in your ftp files

    Thread Starter hanaer

    (@hanaer)

    Hi there,

    When i access appearance, I don’t have editor, I only have menus, wedges, etc.. maybe I am in the wrong place??

    I guess your account is not the administrator of the site. Request in the site owner to change your account into administrator. If not, give this job to him.

    Thread Starter hanaer

    (@hanaer)

    I am the owner of the site. I am just trying to figure out how to properly order the menu bar.

    i knew how you fixed it, you changed the order of the menu by descending.

    Like i said earlier the problem is only in your css. If you remove the float:right in menu li css, and change it to float:left or display:inline your menu will change orderly like what you have in wordpress appearance->menu.

    float:right brought your first nav to the right going to left
    CONTACT DONATE ABOUT US HOME

    while float:left or display:inline will show like this
    HOME ABOUT US DONATE CONTACT

Viewing 15 replies - 1 through 15 (of 15 total)
  • The topic ‘Menu (order) – tried everything suggested.’ is closed to new replies.