Title: WordPress Newbie
Last modified: August 20, 2016

---

# WordPress Newbie

 *  [azparis](https://wordpress.org/support/users/azparis/)
 * (@azparis)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/wordpress-newbie-3-2/)
 * I’ve really screwed up my css – and now I’ve got my menu showing twice – and 
   I only want it below the header…where the heck did I go wrong?
 * I was simply trying to edit and change the “sub” menu under “services” because
   the words are all scrunched together when you hover. Can anyone help me with 
   these two issues? I’ve spent far too many hours searching through my code to 
   find out what I did…I had to give in and post this here! Thanks to anyone who
   can help!
 * [http://www.tinkerbdesigns.com/testblog/](http://www.tinkerbdesigns.com/testblog/)

Viewing 6 replies - 1 through 6 (of 6 total)

 *  [Santosh](https://wordpress.org/support/users/santoshait/)
 * (@santoshait)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/wordpress-newbie-3-2/#post-3072253)
 * check this code in your website
 * <div class=”menu”>
    - <li class=”page_item page-item-122 current_page_item”>[](http://www.tinkerbdesigns.com/testblog/)
      <li class=”page_item page-item-56″>[About](http://www.tinkerbdesigns.com/testblog/about/)
      <li class=”page_item page-item-12″>[Blog](http://www.tinkerbdesigns.com/testblog/blog/)
      <li class=”page_item page-item-8″>[Contact](http://www.tinkerbdesigns.com/testblog/contact/)
      <li class=”page_item page-item-4″>[Portfolio](http://www.tinkerbdesigns.com/testblog/portfolio/)
      <li class=”page_item page-item-6″>[Services](http://www.tinkerbdesigns.com/testblog/services/)
      <ul class=’children’><li class=”page_item page-item-163″>[Custom Furniture](http://www.tinkerbdesigns.com/testblog/services/custom-furniture-2/)
      <li class=”page_item page-item-147″>[E-Design](http://www.tinkerbdesigns.com/testblog/services/e-design-2/)
      <li class=”page_item page-item-165″>[Interiors](http://www.tinkerbdesigns.com/testblog/services/interiors-2/)
 * </div>
    </div>
 * it is two times that is the reason
 *  Thread Starter [azparis](https://wordpress.org/support/users/azparis/)
 * (@azparis)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/wordpress-newbie-3-2/#post-3072316)
 * awesome – thank you for this info…seems to make perfect sense, and if I was still
   over on Blogger, I’d just go in and delete the second part of the code, but in
   WordPress I’m having a hard time finding this code. I’ve searched through every
   template – including header.php, style.css, and all of the others, using the “
   find” feature…and can’t find this code anywhere. Is there an easier way to search
   out the entire code instead of every template individually? I know I can see 
   my source code in Firefox, but that does me no good when I still have to search
   WP and all of the different templates to find this lovely code.
 * Simple I’m sure, but I’m new!
 * Thanks!
 *  [Santosh](https://wordpress.org/support/users/santoshait/)
 * (@santoshait)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/wordpress-newbie-3-2/#post-3072317)
 * there is difference in in viewing source code in browser and viewing in WordPress
   themes. there you will find php variables which fetch data at run time
    you search
   in header.php of your theme which theme you are using
 *  Thread Starter [azparis](https://wordpress.org/support/users/azparis/)
 * (@azparis)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/wordpress-newbie-3-2/#post-3072324)
 * I totally get the difference between viewing in browser vs. in themes….but my
   challenge is finding the code you mentioned above – I can’t find it in my theme.
   Here is my header.php code: I CAN see the code you mentioned in my browser code,
   but can’t find it all in my wordpress template code. Just wanna know where the
   heck it is so I can delete the duplicate code to remove my nav bar!
 * <!doctype html>
 * <html <?php language_attributes(); ?>>
    <head> <link href=”css/adipoli.css” rel
   =”stylesheet” type=”text/css”/> <script src=”js/jquery-1.7.1.js” type=”text/javascript”
   ></script> <script src=”js/jquery.adipoli.min.js” type=”text/javascript”></script
   >
 *  <meta charset=”<?php bloginfo(‘charset’); ?>”>
    <meta name=”viewport” content
   =”width=device-width, initial-scale=1″> <title><?php wp_title(‘|’, true, ‘right’);?
   ><?php bloginfo(‘name’); ?></title>
 *  <!– CSS –>
    <link rel=”stylesheet” type=”text/css” href=”<?php bloginfo(‘stylesheet_url’);?
   >” media=”screen” /> <?php ln_get_color_theme(); ?> <?php ln_get_responsive_css();?
   >
 *  <!– Fonts –>
    <?php ln_get_fonts(); ?>
 *  <!– Pingback –>
    <link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ );?
   >” />
 *  <?php ln_get_favicon(); ?>
 *  <!– RSS –>
    <?php ln_get_rss(); ?>
 *  <!– Header Hook –>
    <?php wp_head(); ?>
 * </head>
 * <div id=”main-nav”>
    <?php wp_nav_menu(array(‘theme_location’ => ‘main_nav’, ‘
   container’ => ”)); ?> </div> <body <?php body_class();?> >
 *  <!– Header –>
    <header id=”main-header”> <div class=”wrap”> <div id=”logo”> 
   <?php ln_get_logo(); ?> <?php ln_get_slogan(); ?> </div> <nav id=”main-nav”> 
   <?php
 *  // main nav
    wp_nav_menu(array(‘theme_location’ => ‘primary’, ‘items_wrap’ =
   > ‘<ul id=”menu-main” class=”%2$s”>%3$s’));
 *  if(has_nav_menu(‘primary’)){
    // mobile main nav wp_nav_menu(array(‘theme_location’
   => ‘primary’, ‘container’ => false, ‘items_wrap’ => ‘<select id=”mobile-main-
   nav” class=”responsive-menu”><option value=”#”>’.__(‘ – Navigation’, ‘framework’).'
   </option> %3$s </select>’, ‘walker’ => new Ln_Responsive_Nav_Menu_Walker() ));}?
   > </nav> </div> <div class=”clear”></div> </header>
 *  Thread Starter [azparis](https://wordpress.org/support/users/azparis/)
 * (@azparis)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/wordpress-newbie-3-2/#post-3072325)
 * Oh, and I’m using a purchased theme….”unfold”….
 *  [Santosh](https://wordpress.org/support/users/santoshait/)
 * (@santoshait)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/wordpress-newbie-3-2/#post-3072326)
 * now it is working fine

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘WordPress Newbie’ is closed to new replies.

## Tags

 * [nav bar](https://wordpress.org/support/topic-tag/nav-bar/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 6 replies
 * 2 participants
 * Last reply from: [Santosh](https://wordpress.org/support/users/santoshait/)
 * Last activity: [13 years, 7 months ago](https://wordpress.org/support/topic/wordpress-newbie-3-2/#post-3072326)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
