Moving logo center above menu

Responsive WordPress theme for musicians, bands, artists - easy to configure and various theme features.
GK User
Tue May 12, 2015 9:33 am
Hi,
I wanted to move the logo above the menu. can you please assist?
thanks!
User avatar
Senior Boarder

GK User
Tue May 12, 2015 9:54 am
Hi,
Could you please provide me with a URL to your website, either here or via PM (click the “Private Message” text underneath my avatar) so that I may analyze it?
User avatar
Moderator

GK User
Tue May 12, 2015 11:36 am
It's fixed menu, so generally it won't be easy, but you can move the logo next to fixed menu, by moving this fragment
Code: Select all
<?php if(get_option($tpl->name . "_branding_logo_type", 'css') != 'none') : ?>
         <h1>
            <a href="<?php echo home_url(); ?>" class="<?php echo get_option($tpl->name . "_branding_logo_type", 'css'); ?>Logo"><?php gk_blog_logo(); ?></a>
         </h1>
         <?php endif; ?>


after these lines (in RockWall/layout/header.php file):
Code: Select all
<div id="gk-menu-wrapper">
      <div class="gk-page">


and add the following custom css code:
Code: Select all
.imageLogo img {
   float: left;
}
User avatar
Moderator

GK User
Sat May 30, 2015 7:13 am
Thank you! I might have missed something as i've got 2 logos showing now. Any ideas?

thanks
User avatar
Senior Boarder

GK User
Mon Jun 01, 2015 8:34 am
Hi,

Did you move the fragment from header.php file (not copy)?
User avatar
Moderator


cron