Change position of social icons

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
Fri Jun 28, 2013 11:23 am
Reply with quote
Report this post
Hey guys,

I have a problem, I can"t seem to change the position of the social module position. I tried all the steps of this documentation http://www.gavick.com/documentation/joo ... -position/
However it seems like the force is strong with this specific module position.
As it won't move. Any suggestions?
User avatar
Fresh Boarder

GK User
Fri Jun 28, 2013 1:37 pm
Reply with quote
Report this post
Hi,
ok, but what you wanted to do, where to move it ? Up / Down or use as a module?
User avatar
Platinum Boarder

GK User
Fri Jun 28, 2013 1:40 pm
Reply with quote
Report this post
Hi,

I wanted to simply move it up right next to the logo to display it then at the right there/
User avatar
Fresh Boarder

GK User
Fri Jun 28, 2013 1:49 pm
Reply with quote
Report this post
For those social buttons we used Custom HTML module named "Social icons", position: social
But yes, this template (wall) is very specific. But all depends want you need, please make arrow where to put it, then I will give you some tips.
User avatar
Platinum Boarder

GK User
Fri Jun 28, 2013 1:55 pm
Reply with quote
Report this post
If next to logo , change this file: gk_fashion\layouts\default.php

Code: Select all
<div id="gkPageWrap">   
       <section id="gkPageTop">                       
          <?php $this->layout->loadBlock('logo'); ?>
         
         ---- add new module  here --------

          <?php if($this->API->get('show_menu', 1)) : ?>


You can also paste social buttons html code here without module. Remember about margins/padding etc.
User avatar
Platinum Boarder

GK User
Fri Jun 28, 2013 2:23 pm
Reply with quote
Report this post
Right there, in between the logo and the menu.
Because the menu at my page is shifted underneath the logo. so there is a huge white space right next to the logo.

[edit] for some reason I am unable to upload this file using Chrome on a windows 7 machine.
User avatar
Fresh Boarder

GK User
Thu Jul 04, 2013 9:55 am
Reply with quote
Report this post
Code: Select all
   <div id="gkPageWrap">   
       <section id="gkPageTop">                       
          <?php $this->layout->loadBlock('logo'); ?>
         <?php $this->layout->loadBlock('social'); ?>
         
          <?php if($this->API->get('show_menu', 1)) : ?>
          <div id="gkMainMenu"<?php if($this->API->modules('search')) : ?> class="hasSearch"<?php endif; ?>>
             <?php
                $this->mainmenu->loadMenu($this->API->get('menu_name','mainmenu'));
                 $this->mainmenu->genMenu($this->API->get('startlevel', 0), $this->API->get('endlevel',-1));
             ?>   
             
             <div id="gkMobileMenu">
             <?php echo JText::_('TPL_GK_LANG_MOBILE_MENU'); ?>
             <select onChange="window.location.href=this.value;">
             <?php
                 $this->mobilemenu->loadMenu($this->API->get('menu_name','mainmenu'));
                 $this->mobilemenu->genMenu($this->API->get('startlevel', 0), $this->API->get('endlevel',-1));
             ?>
             </select>
             </div>


This is how my default.php look right now, still no change.
User avatar
Fresh Boarder


cron
Remember me
Register New Account
If you are old Gavick user, click HERE for steps to retrieve your account.