Hi,
Is it possible to set the logo static instead of dynamic? I want the logo be on the left side when you visit the website.
Regards, Bruce
<div id="gkHeaderNav"<?php if(in_array('frontpage', $page_suffix_table) === FALSE) : ?> class="static"<?php endif; ?>>
<div id="gkHeaderNav"<?php if(in_array('frontpage', $page_suffix_table) === FALSE) : ?> class="static active"<?php endif; ?>>
if(jQuery('#gkHeaderNav').length > 0 && !jQuery('#gkHeaderNav').hasClass('active')) {
if(jQuery(document.body).hasClass('frontpage') && jQuery('#gkHeaderNav').length > 0 && !jQuery('#gkHeaderNav').hasClass('active')) {
#gkHeader.menu-visible {
padding-top: 145px;
}
#gkHeader.menu-visible {
padding-top: 80px;
}
.frontpage #gkLogo,
.frontpage #gkLogo img {
display: block;
float: none!important;
margin: 0 auto;
}
dziudek wrote:Hello,
Did you configured the page suffixes under the template features settings for the italian homepage as the same as for the main homepage?
If you want to disable the animation on the menu, please open the layouts/default.php file and please change the following line:
- Code: Select all
<div id="gkHeaderNav"<?php if(in_array('frontpage', $page_suffix_table) === FALSE) : ?> class="static"<?php endif; ?>>
to:
- Code: Select all
<div id="gkHeaderNav"<?php if(in_array('frontpage', $page_suffix_table) === FALSE) : ?> class="static active"<?php endif; ?>>
Then please also open file js/gk.scripts.js and please change the following fragment:
- Code: Select all
if(jQuery('#gkHeaderNav').length > 0 && !jQuery('#gkHeaderNav').hasClass('active')) {
to:
- Code: Select all
if(jQuery(document.body).hasClass('frontpage') && jQuery('#gkHeaderNav').length > 0 && !jQuery('#gkHeaderNav').hasClass('active')) {