I need help tweaking my header to have menu items line up
-
I’ve searched several WordPress sites for help on this, so forgive me if this has been asked before.
My web site is at https://bhs.cc
As you can see, the header contains three menu items; the home button, a dropdown menu of links (Tools), and my categories. The links (Tools) menu show up lower and in a different font than the other menus.
I would like the Tools menu to look the same as the other menus in the header.
This is the code for the header:
<?php if (is_home()) { ?> <li class="current_page_item"><a rel="nofollow" href="<?php echo get_option('home'); ?>"><?php _e("Home", 'studiopress'); ?></a></li> <?php } else { ?> <li><a rel="nofollow" href="<?php echo get_option('home'); ?>"><?php _e("Home", 'studiopress'); ?></a></li> <?php } ?> <?php wp_list_bookmarks('&title_li=&depth=4&sort_column=menu_order'); ?> <?php wp_list_categories('title_li=&depth=4&sort_column=menu_order'); ?> </ul> </div>
I’ve exhausted myself trying different things to make everything line up, but I can’t get it to work.
Can anyone help me configure the header so that everything lines up? My students and I would be much happier.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘I need help tweaking my header to have menu items line up’ is closed to new replies.