• Resolved Yookai

    (@yookai)


    Hello, I’m trying to swap the position of the site title with the position of the navigation bar. But I’m not really sure as of how to do that.

    I was kind of hoping I could do that through the Custom CSS option as I’m not very comfortable with altering the source files. But I do know how to do it if necessary.

Viewing 2 replies - 1 through 2 (of 2 total)
  • It’s better to create a child theme
    and create a header.php file in child theme
    and place this code in header.php file.

    <!DOCTYPE html>
    <html <?php language_attributes(); ?>>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo( 'charset' ); ?>" />
    <?php  	cryout_seo_hook(); ?>
    <link rel="profile" href="http://gmpg.org/xfn/11" />
    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
    <?php
     	cryout_header_hook();
    	wp_head(); ?>
    </head>
    <body <?php body_class(); ?>>
    
    <?php cryout_body_hook(); ?>
    
    <div id="wrapper" class="hfeed">
    
    <?php cryout_wrapper_hook(); ?>
    
    <header id="header">
    
    		<div id="masthead">
    			<nav id="access" class="jssafe" role="navigation">
    
    				<?php cryout_access_hook();?>
    
    			</nav><!-- #access -->
    			<div id="branding" role="banner" >
    
    				<?php cryout_branding_hook();?>
    				<div style="clear:both;"></div>
    
    			</div><!-- #branding -->
    
    		</div><!-- #masthead -->
    
    	<div style="clear:both;"> </div>
    
    </header><!-- #header -->
    <div id="main">
    	<div  id="forbottom" >
    		<?php cryout_forbottom_hook(); ?>
    
    		<div style="clear:both;"> </div>
    
    		<?php cryout_breadcrumbs_hook();?>
    Thread Starter Yookai

    (@yookai)

    Works easy and to the perfection, thank you very much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Swap the site title and menu’ is closed to new replies.