How to separate copyright from "Switch to mobile version"

Professional Joomla restaurant template comes with a custom animated modules and advanced typography elements.
GK User
Wed Jul 25, 2012 9:29 am
Hello, as you can see in attached image, on my android device, if i watch the website in desktop mode, on footer i have copyright and "switch to mobile version" united... separated just by a dot.
Is it possible to put the copyright on the right of the footer and "switch to modbile version" at the center of the page?

Thanks a lot for your help.

Screenshot_2012-07-25-10-23-11.png
User avatar
Junior Boarder

Konrad M
Wed Jul 25, 2012 9:45 am
Hi,
please try add to override.css
Code: Select all
span.mobileSwitch {
padding:0 0 0 10px;
}

and increase or decrease last value to fit your needs. Remember to enable override.css option in template settings.
User avatar

GK User
Wed Jul 25, 2012 10:09 am
Thanks Konrad, it solved the space problem. But is possible to put "switch to mobile version" at the center of the page and copyright informations at right side of the page?
User avatar
Junior Boarder

Konrad M
Wed Jul 25, 2012 10:11 am
Please try change this code I gave you to
Code: Select all
span.mobileSwitch {
padding:0 0 0 10px;
float:left;
}

and use last value to center it.
User avatar

GK User
Wed Jul 25, 2012 10:24 am
Sorry, but unfortunately it doesn't work. "Switch to mobile version" is still at extreme right of the page.
Do you have another solution? Thanks a lot for your help.
User avatar
Junior Boarder

Konrad M
Wed Jul 25, 2012 1:57 pm
Please give me url to your page.
User avatar

GK User
Wed Jul 25, 2012 4:22 pm
www.biancofarina.com . let me know if you need admin panel access, i've installed jsecure and i will give you the right address, in PM.
User avatar
Junior Boarder

Konrad M
Thu Jul 26, 2012 11:01 am
Please try go to layouts/blocks/footer.php and find:
Code: Select all
<span class="mobileSwitch">
         <a href="javascript:setCookie('gkGavernMobile_<?php echo $this->parent->name; ?>', 'mobile', 365);window.location.reload();">
            <?php echo JText::_('TPL_GK_LANG_SWITCH_TO_MOBILE'); ?>
         </a>
      </span>

and change to:
Code: Select all
<span class="mobileSwitch" style="float:left;padding:0 0 0 10px;">
         <a href="javascript:setCookie('gkGavernMobile_<?php echo $this->parent->name; ?>', 'mobile', 365);window.location.reload();">
            <?php echo JText::_('TPL_GK_LANG_SWITCH_TO_MOBILE'); ?>
         </a>
      </span>
User avatar

GK User
Thu Jul 26, 2012 11:39 am
Perfect!. it works fine!!! Thanks a lot.
User avatar
Junior Boarder


cron