sombrefou Posted February 15, 2014 Share Posted February 15, 2014 hello, I would like to get my corp footer of my page in order to extend to 100% I prestashop version 1.5.6.2 My module is: footercustom (purchased on the site prestashop). this joint, my footer.tpl. Thank you for your help. <div id="footercustom" class="container"> {if $fc_topblock == 1} <div id="footercustom_links_container"> <div id="footercustom_links"> <div id="footercustom_img_company"> {if $fc_img == 1} <img src="{$base_dir_ssl}modules/footercustom/img/footer_img_{if $ps_version >= '1.5.0.0'}{$id_shop}{else}1{/if}.png" alt="" /> {/if} {if $company_name.name}<p class="footercustom_company_name footercustom_title">{$company_name.name}</p>{/if} {if $company_address1.address1}<p class="footercustom_company_address1">{$company_address1.address1}</p>{/if} {if $company_address2.address2}<p class="footercustom_company_address2">{$company_address2.address2}</p>{/if} {if $company_phone.phone}<p class="footercustom_company_phone">{$company_phone.phone}</p>{/if} {if $company_mail.mail}<p class="footercustom_company_mail">{$company_mail.mail}</p>{/if} </div> <ul id="footercustom_link_informations"> <li class="footercustom_link_title footercustom_title">{$blocktitle1}</li> {foreach from=$blocks1 item=block name=loop} <li>{if $block.link}<a href="{$block.link}" title="{$block.title}">{/if}{if $block.title}{$block.title}{/if}{if $block.link}</a>{/if}</li> {/foreach} </ul> <ul id="footercustom_link_products"> <li class="footercustom_link_title footercustom_title">{$blocktitle2}</li> {foreach from=$blocks2 item=block name=loop} <li>{if $block.link}<a href="{$block.link}" title="{$block.title}">{/if}{if $block.title}{$block.title}{/if}{if $block.link}</a>{/if}</li> {/foreach} </ul> <ul id="footercustom_link_about"> <li class="footercustom_link_title footercustom_title">{$blocktitle3}</li> {foreach from=$blocks3 item=block name=loop} <li>{if $block.link}<a href="{$block.link}" title="{$block.title}">{/if}{if $block.title}{$block.title}{/if}{if $block.link}</a>{/if}</li> {/foreach} </ul> <div id="footercustom_newsletter_social"> {if $fc_newsletter == 1} <form {if $ps_version >= '1.4.0.0'}action="{$link->getPageLink('index.php')}"{else}action="{$base_dir_ssl}"{/if} method="post"> <p> <span class="footercustom_newsletter_title footercustom_title">{l s='Newsletter' mod='footercustom'}</span> {if isset($msg) && $msg} <span class="footercustom_newsletter_message">{$msg}</span> {else} <span class="footercustom_newsletter_message">{l s='Subscribe to our newsletter to receive exclusive offers' mod='footercustom'}</span> {/if} <input type="text" name="email" class="footercustom_newsletter_input" value="{l s='Your mail address' mod='footercustom'}" onfocus="javascript:if(this.value=='{l s='Your mail address' mod='footercustom'}')this.value='';" onblur="javascript:if(this.value=='')this.value='{l s='Your mail address' mod='footercustom'}';" /> <input type="submit" name="submitFCNewsletter" class="footercustom_newsletter_button" value="{l s='Ok' mod='footercustom'}" /> </p> </form> {/if} <div class="clear" style="clear:both"></div> {if $fc_social == 1} <p class="footercustom_social_title footercustom_title">{l s='Follow us' mod='footercustom'}</p> {if $facebook_url.facebook}<a href="{$facebook_url.facebook}" class="footercustom_social_icon footercustom_social_facebook" title="{l s='Facebook' mod='footercustom'}"></a>{/if} {if $twitter_url.twitter}<a href="{$twitter_url.twitter}" class="footercustom_social_icon footercustom_social_twitter" title="{l s='Twitter' mod='footercustom'}"></a>{/if} {if $rss_url.rss}<a href="{$rss_url.rss}" class="footercustom_social_icon footercustom_social_rss" title="{l s='RSS' mod='footercustom'}"></a>{/if} {/if} </div> </div> </div> {/if} {if $fc_bottomblock == 1} <div id="footercustom_editor_container"> <div id="footercustom_editor_reinsurance"> {if $fc_reinsurance == 1} <div id="footercustom_reinsurance"> <div class="footercustom_reinsurance_block"> <p class="footercustom_reinsurance_block_title footercustom_title">{$reinsurance1_title}</p> <p class="footercustom_reinsurance_block_content">{$reinsurance1_description}</p> <p><a href="{$reinsurance1_link}" title="{l s='Click here for more infos' mod='footercustom'}">{l s='Click here for more infos' mod='footercustom'}</a></p> </div> <div class="footercustom_reinsurance_block"> <p class="footercustom_reinsurance_block_title footercustom_title">{$reinsurance2_title}</p> <p class="footercustom_reinsurance_block_content">{$reinsurance2_description}</p> <p><a href="{$reinsurance2_link}" title="{l s='Click here for more infos' mod='footercustom'}">{l s='Click here for more infos' mod='footercustom'}</a></p> </div> <div class="footercustom_reinsurance_block"> <p class="footercustom_reinsurance_block_title footercustom_title">{$reinsurance3_title}</p> <p class="footercustom_reinsurance_block_content">{$reinsurance3_description}</p> <p><a href="{$reinsurance3_link}" title="{l s='Click here for more infos' mod='footercustom'}">{l s='Click here for more infos' mod='footercustom'}</a></p> </div> <div class="footercustom_reinsurance_block"> <p class="footercustom_reinsurance_block_title footercustom_title">{$reinsurance4_title}</p> <p class="footercustom_reinsurance_block_content">{$reinsurance4_description}</p> <p><a href="{$reinsurance4_link}" title="{l s='Click here for more infos' mod='footercustom'}">{l s='Click here for more infos' mod='footercustom'}</a></p> </div> </div> {/if} {foreach from=$editor item=content name=loop} {$editor} {/foreach} </div> </div> {/if} </div> Link to comment Share on other sites More sharing options...
vekia Posted February 15, 2014 Share Posted February 15, 2014 without access to website it's not possible to help it's because footer depends on other part of website too. it also depends on css styles, not only tpl. Link to comment Share on other sites More sharing options...
sombrefou Posted February 15, 2014 Author Share Posted February 15, 2014 Sorry, My website : http://breizhvap.fr Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now