Limited Time Offer | Get 10% OFF on All Themes Package. Use Coupon Code GRC10 Buy Now

WordPress Website Templates

Find Professional WordPress themes Easy and Simple to Setup

inner banner

Two images in Header

Tagged: , ,

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #6492
    Dante Nava
    Participant

    Hi,

    I’m trying to put two images in the header. One where the logo goes, and one where the location is supposed to go. Right now if I uncheck the box to allow the email, location and phone number info to show up I only get a search field and the words “This may be a good place to introduce yourself and your site or include some credits.” showing up above it. How do I put an image there instead? Thanks in advance!

    -Dante

    P.S. I would post a link, but I’m building the site on my local machine.

    #6500
    Grace Themes
    Member

    Hi Dante,

    If you are using MilestoneZ PRO theme and want to use header image

    Go to Appearance -> Editor -> custom-header.php file
    at line no. 38 rename .innerbanner123 with .header

    Now update the header.php file with this below new modified code

    <?php
    /**
     * The Header for our theme.
     *
     * Displays all of the <head> section and everything up till <div id="content">
     *
     * @package Milestonez Pro
     */
    ?><!DOCTYPE html>
    <html <?php language_attributes(); ?>>
    <head>
    <meta charset="<?php bloginfo( 'charset' ); ?>">
    <meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE">
    <meta name="viewport" content="width=device-width">
    <link rel="profile" href="http://gmpg.org/xfn/11">
    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
    <!--[if lt IE 9]>
    <script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script>
    <link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/ie.css" type="text/css" media="all" />
    <![endif]-->
    <?php 
    	wp_head(); 
    	$themename = wp_get_theme();
    	$themename = preg_replace("/\W/", "_", strtolower($themename) );
    	if( !get_option( $themename ) ) {
    	require get_template_directory() . '/index-default.php';
    	exit;
    	}
    ?>
    </head>
    
    <body id="top" <?php body_class(); ?>>
    <div class="sitewrapper <?php if( of_get_option('boxlayout', true) != '' ) { ?>boxlayout<?php } ?>">
    <?php if( of_get_option('headtopstrip', true) == '' ) { ?>
    <div class="header-top">
      <div class="container">
       
         <div class="left"><?php if( of_get_option('headerofficehours') != '' ){ echo do_shortcode( of_get_option('headerofficehours', true ));} ?></div>
         <div class="right"><?php if( of_get_option('headersocial') != '' ){ echo do_shortcode( of_get_option('headersocial', true ));} ?></div>
         <div class="clear"></div>
       
      </div>
     </div><!--end header-top-->
    <?php } ?> 
    <div class="header">
    	<div class="container">
          <div class="logo">
            <?php if( of_get_option( 'logo', true ) != '' ) { ; ?>
                   <a href="<?php echo home_url('/'); ?>"><img src="<?php echo esc_url( of_get_option( 'logo', true )); ?>" / ></a>               
                <?php } ?>
                <?php $hidettldesc = of_get_option('hide_titledesc', '1'); ?>
    				<?php if($hidettldesc == ''){ ?>
                    <div class="site-branding-text">
                      <a href="<?php echo esc_url(home_url('/')); ?>"><h1><?php bloginfo('name'); ?></h1></a>
                      <span class="tagline"><?php bloginfo( 'description' ); ?></span>
                   </div> 
              <?php } ?>
        </div><!-- .logo --> 
        <?php if( of_get_option('headinfodata', true) == '' ) { ?>                
         <div class="header_right"> 
            <?php if(!dynamic_sidebar('header-widget')): ?> 
               <?php if( of_get_option('headerinfo',true) != ''){ ?><?php echo of_get_option('headerinfo'); ?><?php } ?> 
            <?php endif; ?>
           <div class="clear"></div>  
        </div><!--header_right-->
       <?php } ?>  
     <div class="clear"></div>
    </div><!-- .container-->
    <div class="mainmenu">
     <div class="container">
     <div class="toggle">
        	<a class="toggleMenu" href="#">
    		<?php if( of_get_option('menuwordchange',true) != '') { ?>
                <?php echo of_get_option('menuwordchange'); ?>         
            <?php } else { ?>                 
                <?php _e('Menu','milestonez-pro'); ?>                
            <?php } ?>
          </a>
        </div><!-- toggle -->
        <div class="sitenav">                   
       	 <?php wp_nav_menu( array('theme_location' => 'primary') ); ?>   
        </div><!--.sitenav --> 
      </div><!-- .container-->
     </div><!-- .mainmenu-->
    </div><!-- .header -->
    <?php if ( is_home() || is_front_page() ) { ?>
    <?php if( of_get_option('customslider',true) == ''){ ?>
        <div class="slider-main">
           <?php
    			$slAr = array();
    			$m = 0;
    			for ($i=1; $i<11; $i++) {
    				if ( of_get_option('slide'.$i, true) != "" ) {
    					$imgSrc 	= of_get_option('slide'.$i, true);
    					$imglink	= of_get_option('slidelink'.$i, true);
    					$slidebutton	= of_get_option('slidebutton'.$i, true);
    					$slideurl	= of_get_option('slideurl'.$i, true);
    					if ( strlen($imgSrc) > 10 ) {
    						$slAr[$m]['image_src'] = of_get_option('slide'.$i, true);
    						$slAr[$m]['image_button'] = of_get_option('slidebutton'.$i, true);
    						$slAr[$m]['image_url'] = of_get_option('slidelink'.$i, true);
    						$m++;
    					}
    				}
    			}
    			$slideno = array();
    			if( $slAr > 0 ){
    				$n = 0;?>
                    <div id="slider" class="nivoSlider">
                    <?php 
                    foreach( $slAr as $sv ){
                        $n++; ?><img src="<?php echo esc_url($sv['image_src']); ?>" alt="<?php echo esc_attr($sv['image_title']);?>" title="<?php echo '#slidecaption'.$n ; ?>"/><?php
                        $slideno[] = $n;
                    }
                    ?>
                    </div> 
                    
                     <?php
                    foreach( $slideno as $sln ){ ?>
                        <div id="slidecaption<?php echo $sln; ?>" class="nivo-html-caption">
                       
                            <?php if( of_get_option('slidetitle'.$sln, true) != '' ){ ?>                          
                            <a href="<?php echo of_get_option('slideurl'.$sln, true); ?>"><h2><?php echo of_get_option('slidetitle'.$sln, true); ?></h2></a>						
                            <?php } ?>
                             <?php if( of_get_option('slidedesc'.$sln, true) != '' ){ ?>                         
                                 <p><?php echo do_shortcode(of_get_option('slidedesc'.$sln, true)); ?></p>
                             <?php } ?>						                        
                            <?php if( of_get_option('slideurl'.$sln, true) != '' ){ ?>
                                 <a class="button" href="<?php echo of_get_option('slideurl'.$sln, true); ?>">							
                                   <?php echo of_get_option('slidebutton'.$sln, true); ?>
                                 </a>
                             <?php } ?> 
                             
                             <?php if( of_get_option('buythistheme', true) != '' ){ ?>
                                 <?php echo of_get_option('buythistheme', true); ?>
                             <?php } ?>                           
                       
                        </div><?php } } ?>            
    
        </div><!-- slider -->
        
    <?php } else {
     $short_code = of_get_option('customslider');
     echo do_shortcode($short_code);
     } ?>
    	<?php } else { 
    		if( of_get_option('innerpagebanner',true) == '') { $cls = 'style="display:none"'; } else { $cls = ''; }
    	?>        
    		<div class="innerbanner" <?php echo $cls; ?>>                
              <?php
    			$header_image = get_header_image();
    			
    			if( is_single() || is_archive() || is_category() || is_author()|| is_search()) { 
    				if( of_get_option('innerpagebanner',true) != '') { 
            			echo '<img src="'.esc_url( of_get_option( 'innerpagebanner', true )).'" alt="">';
    				}
    			}
    			elseif( has_post_thumbnail() ) {
    				$src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full' );
    				$thumbnailSrc = $src[0];
    				echo '<img src="'.$thumbnailSrc.'" alt="">';
    			} 
    			elseif( of_get_option('innerpagebanner',true) != '') { 
                	echo '<img src="'.esc_url( of_get_option( 'innerpagebanner', true )).'" alt="">';
    		    } ?>
            </div> 
    	<?php }	?> 
      <?php include ('section-pagecolumn.php'); ?>    
    #6506
    Dante Nava
    Participant

    Thanks! I’ll try this right away!
    -Dante

    #6523
    Grace Themes
    Member

    Yes, please do this and let me know your feedback.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.