Hello,
It is possible - but requiers some changes (CSS and HTML). Generally this kind of cusotmization is beyond our technical support, but I'll give you some tips.
First you should move baner top widget area before the logo (News2/layouts/header.php.file)
This fragment is responsible for the logo:
- Code: Select all
<?php if(get_option($gk_tpl->name . "_branding_logo_type", 'css') != 'none') : ?>
<a href="<?php echo home_url(); ?>" id="gk-logo" class="<?php echo get_option($gk_tpl->name . "_branding_logo_type", 'css'); ?>Logo"><?php gk_blog_logo(); ?></a>
<?php endif; ?>
Now you have to use CSS to display logo centered and make the the banner-top fullwidth:
- Code: Select all
#gk-banner-top {
float: none;
max-width: 100%;
}