Reverse the logo and menu

Discussion in 'RoadFighter WordPress Theme' started by eliteduweb, Jun 22, 2015.

Thread Status:
Not open for further replies.
  1. eliteduweb

    eliteduweb New Member

    Joined:
    Jun 6, 2015
    Messages:
    2
    Likes Received:
    0
    Hello,
    I would like to put the logo below the menu? How can I do it?

    Thanks for your help.
     
  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hello,

    Replace the whole code of header.php file of the Roadfighter theme with the php code given below :-
    PHP:
    <?php
    /**
    * The Header for our theme.
    *
    * Displays all of the <head> section and everything up till <div id="main">
    *
    */
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html <?php language_attributes(); ?>>
        <head>
            <meta charset="<?php bloginfo('charset'); ?>" />
            <title>
                <?php
                
    /*
                * Print the <title> tag based on what is being viewed.
                */
                
    wp_title('|'true'right');
                
    ?>
            </title>
            <?php if (is_front_page()) { ?>
                <?php if (inkthemes_get_option('inkthemes_keyword') != '') { ?>
                    <meta name="keywords" content="<?php echo inkthemes_get_option('inkthemes_keyword'); ?>" />
                    <?php
                
    } else {
                 
                }
                
    ?>
                <?php if (inkthemes_get_option('inkthemes_description') != '') { ?>
                    <meta name="description" content="<?php echo inkthemes_get_option('inkthemes_description'); ?>" />
                    <?php
                
    } else {
                 
                }
                
    ?>
                <?php if (inkthemes_get_option('inkthemes_author') != '') { ?>
                    <meta name="author" content="<?php echo inkthemes_get_option('inkthemes_author'); ?>" />
                    <?php
                
    } else {
                 
                }
                
    ?>
            <?php ?>
            <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
            <link rel="profile" href="http://gmpg.org/xfn/11" />
            <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
            <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('stylesheet_url'); ?>" />
            <?php wp_head(); ?>
        </head>
        <body <?php body_class(); ?> style="<?php if (inkthemes_get_option('inkthemes_bodybg') != '') { ?>background: url(<?php echo inkthemes_get_option('inkthemes_bodybg'); ?>);<?php } else {
                
    ?><?php ?>" >
            <div class="header_container <?php if (is_home()) { ?>home <?php
            
    } else {
                echo 
    'not_home';
            }
            
    ?>
                ">
                <div class="container_24">
                    <div class="grid_24">
                        <div class="header <?php
                        
    if (is_home()) {
                            echo 
    "home";
                        } elseif (
    is_page_template('blog.php')) {
                            echo 
    'not_home';
                        } else {
                            echo 
    'not_home';
                        }
                        
    ?>">
     
     
                            <div class="menu-wrapper">
                                <div id="MainNav">
     
                                    <?php if (inkthemes_get_option('inkthemes_nav') != '') { ?><a href="#" class="mobile_nav closed"><?php echo stripslashes(inkthemes_get_option('inkthemes_nav')); ?><span></span></a>
                                    <?php } else { ?> <a href="#" class="mobile_nav closed">Pages Navigation Menu<span></span></a>
                                    <?php ?>
                                    <?php inkthemes_nav(); ?>
                                </div>
                            </div>
                            <div class="clear"></div>
                            <div class="header_wrapper">
                                <div class="grid_10 alpha">
                                    <div class="logo">
                                        <?php if (inkthemes_get_option('inkthemes_logo') != '') { ?>
                                            <a href="<?php echo home_url(); ?>">
                                                <img src="<?php echo inkthemes_get_option('inkthemes_logo'); ?>" alt="<?php bloginfo('name'); ?>">
                                            </a>
                                        <?php } else { ?><h1><a href="<?php echo home_url(); ?>"><?php bloginfo('name'); ?></a></h1>
                                            <p><?php bloginfo('description'); ?></p><?php ?>
                                    </div>
                                </div>
                                <div class="grid_14 omega">         
                                    <div class="call-us">
                                        <?php if (inkthemes_get_option('inkthemes_topright') != '') { ?>
                                            <p> <?php echo stripslashes(inkthemes_get_option('inkthemes_topright')); ?></p>
                                            <a class="btn" href="tel:<?php echo stripslashes(inkthemes_get_option('inkthemes_contact_number')); ?>">
                                            </a>
                                        <?php } else {
                                            
    ?>
                                            <p> For Reservation Call : 1.888.222.5847</p>
                                            <a class="btn" href="tel:5551234567"></a>
                                        <?php ?>
                                    </div>
                                </div>     
                            </div>
                        </div>
                    </div>
                    <div class="clear"></div>
                </div>
            </div>
    It will resolve your issue :)

    Thanks,
    Praveen
     
    eliteduweb likes this.
  3. eliteduweb

    eliteduweb New Member

    Joined:
    Jun 6, 2015
    Messages:
    2
    Likes Received:
    0
    Hello Praveen,

    Thanks for your support. It's perfect! Thanx!:)
    You can see the result of my site: Pure Wave Animation
     
Thread Status:
Not open for further replies.

Share This Page