Viewing 7 replies - 1 through 7 (of 7 total)
  • There is no any option on theme to move the navigation. You can move it using CSS design. Use Child theme to customize theme.
    Thanks

    Thread Starter shiva-wordpress

    (@shiva-wordpress)

    thank 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.
    Thanks

    Thread Starter shiva-wordpress

    (@shiva-wordpress)

    http://paperarabia.com/demo/

    without 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.
    Thanks

    Thread Starter shiva-wordpress

    (@shiva-wordpress)

    please 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

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

The topic ‘menu on top’ is closed to new replies.