menu on top
-
Hi,
Is there any option to put my navigation bar on top along with logo ?
-
There is no any option on theme to move the navigation. You can move it using CSS design. Use Child theme to customize theme.
Thanksthank you for your prompt reply, if you don’t mind can you guide me what to include in CSS ? I mean which class
Would you please provide the link of your site? It will help me to address your problem easier.
Thankswithout scrolling i want to display my NAVIGATION BAR
Find and cut the below code from header.php and paste below the body_class(); of same file.
<div class="header"> <div class="header-inner"> <div class="logo"> <a href="<?php echo esc_url( home_url('/')); ?>"> <?php if( of_get_option( 'logo', true ) != '' ) { ; ?> <?php if( of_get_option('logo',true) == 1 ) { ?> <h1><?php bloginfo('name'); ?></h1> <?php } else { ?> <img src="<?php echo esc_url( of_get_option( 'logo', true )); ?>" / > <?php } } else { ?> <h1><?php bloginfo('name'); ?></h1> <?php } ?> <p><?php bloginfo('description'); ?></p> </a> </div><!-- logo --> <div class="toggle"> <a class="toggleMenu" href="#"><?php _e('Menu','skt-white'); ?></a> </div><!-- toggle --> <div class="nav"> <?php wp_nav_menu( array('theme_location' => 'primary') ); ?> </div><!-- nav --><div class="clear"></div> </div><!-- header-inner --> </div><!-- header -->Try yourself once. Child theme is recommended to customize theme.
Thanksplease can you give me the link for SKT WHITE child theme to install
Its so easy to create child theme. Follow Codex Link or Blog Post
If not work or you are unable to create child theme please feel free to ask.
Thanks
The topic ‘menu on top’ is closed to new replies.
