Remove Social Strip from Magazine Template
Rate this topic: 




1.00 out of 6 based on 1 vote(s)






- GK User
- Sat Feb 15, 2014 2:12 pm
- Reply with quote
- Report this post
Hi,
Is there any way to remove the social strip (on the left side of the page) from the Magazine theme.
I really like the 3 column layout of this theme but I find the social strip to be a bit of a distraction as I am not very active on the social media sites and do not want to drive my users off of my site.
I tried using firebug to find out which div to disable but can't seem to figure it out.
If I were to disable the social strip is there an alternative for where to display the mobile menu?
Thanks
Is there any way to remove the social strip (on the left side of the page) from the Magazine theme.
I really like the 3 column layout of this theme but I find the social strip to be a bit of a distraction as I am not very active on the social media sites and do not want to drive my users off of my site.
I tried using firebug to find out which div to disable but can't seem to figure it out.
If I were to disable the social strip is there an alternative for where to display the mobile menu?
Thanks
-
- Fresh Boarder
- teitbite
- Sun Feb 16, 2014 11:44 am
- Reply with quote
- Report this post
Hi
Please add this to css:
Please add this to css:
- Code: Select all
body {
margin: 0;
}
#gkToolbar,
#gkBackToTop {
display: none;
}
-
- Moderator
- GK User
- Mon Feb 17, 2014 7:13 am
- Reply with quote
- Report this post
Thanks for the code.
Unfortunately, that also would get rid of the mobile menu. Is there a way to move the mobile menu to another position?
Thanks
Unfortunately, that also would get rid of the mobile menu. Is there a way to move the mobile menu to another position?
Thanks
-
- Fresh Boarder
- teitbite
- Wed Feb 19, 2014 6:03 pm
- Reply with quote
- Report this post
Hi
This is the code for mobile menu:
Try copy it at the end of /layout/blocks/logo.php and show me Your site than.
This is the code for mobile menu:
- Code: Select all
<?php if($this->API->get('show_menu', 1)) : ?>
<div id="gkMobileMenu">
<?php echo JText::_('TPL_GK_LANG_MOBILE_MENU'); ?>
<select onChange="window.location.href=this.value;">
<?php
$this->parent->mobilemenu->loadMenu($this->API->get('menu_name','mainmenu'));
$this->parent->mobilemenu->genMenu($this->API->get('startlevel', 0), $this->API->get('endlevel',-1));
?>
</select>
</div>
<?php endif; ?>
Try copy it at the end of /layout/blocks/logo.php and show me Your site than.
-
- Moderator
4 posts
• Page 1 of 1