Jump to content

[solved] How move 'Browse the mobile site' from footer?


Recommended Posts

Hello. I try to use Easy Footer Module, but i can't move title 'Browse the mobile site' from original footer. I need this option, so i can't just off this option. So...

1. How to remove it from original footer and add to Easy Footer?

2. And how to change distance between categories on the main page and footer? Footer is located so close to categories...

thanks

post-541242-0-30068400-1366874804_thumb.jpg

Link to comment
Share on other sites

themes / your_theme / footer.tpl

 

you've got there:

 

<div id="footer" class="grid_9 alpha omega clearfix">
   {$HOOK_FOOTER}
   {if $PS_ALLOW_MOBILE_DEVICE}
 <p class="center clearBoth"><a href="{$link->getPageLink('index', true)}?mobile_theme_ok">{l s='Browse the mobile site'}</a></p>
   {/if}
  </div>

 

remove / move the :

 

{if $PS_ALLOW_MOBILE_DEVICE}
 <p class="center clearBoth"><a href="{$link->getPageLink('index', true)}?mobile_theme_ok">{l s='Browse the mobile site'}</a></p>
   {/if}

  • Like 1
Link to comment
Share on other sites

edit the file: modules / prestaloveeasyfooter /css / prestaloveeasyfooter.css

 

add margin-top:20px; param (or any value you want) to .block-prestalove-easyfooter

 

.block-prestalove-easyfooter {

float: left;

width: 100%;

padding: 20px 0;

margin-top:20px;

}

  • Like 1
Link to comment
Share on other sites

×
×
  • Create New...