Remove Social Strip from Magazine Template

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.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
User avatar
Fresh Boarder

teitbite
Sun Feb 16, 2014 11:44 am
Reply with quote
Report this post
Hi

Please add this to css:

Code: Select all
body {
    margin: 0;
}

#gkToolbar,
#gkBackToTop {
    display: none;
}
User avatar
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
User avatar
Fresh Boarder

teitbite
Wed Feb 19, 2014 6:03 pm
Reply with quote
Report this post
Hi

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.
User avatar
Moderator


cron