Quote:
Originally Posted by suseela
Hi, i need to move the Fb and Twitter icon to the top of the web page. How do i do that?
|
The code for this should be in your template: copyright.tpl
This could be in your common_files skin folder, unless you are using a custom template with a custom template - so check your custom template folder 1st, e.g. 2_columns.
(You can use Webmaster mode in admin to work out which templates are being used where)
Then edit your copyright.tpl file to remove the icons from displaying
Find and remove or comment out:
{if $active_modules.Socialize}
{include file="modules/Socialize/footer_links.tpl"}
{/if}
To comment just change it to this:
{* if $active_modules.Socialize}
{include file="modules/Socialize/footer_links.tpl"}
{/if *}
Then find your head.tpl template which will be in your template folder/customer/head.tpl
Now you'll need to drop that code into that file where you want it to display.
You may need to add a new div/layer with css to position it correctly.