Jump to content

La Scritta Copyright E P.iva In Fondo Alla Pagina


Recommended Posts

ciao,

penso che devi intervenire nel tpl del blocco cms

apri il file blockcms.tpl in themes > tuo-tema > modules > blockcms e in fondo trovi

		</ul>
		{$footer_text}
	</section>
	{if $display_poweredby}
	<section class="bottom-footer col-xs-12">
		<div>
			© {'Y'|date} {l s='[1]Ecommerce software by %s[/1]' mod='blockcms' sprintf=['PrestaShop™'] tags=['<a class="_blank" href="http://www.prestashop.com">']}
		</div>
	</section>
	{/if}
	<!-- /Block CMS module footer -->
{/if}

modifica come qui sotto

		</ul>		
	</section>
	<section class="bottom-footer col-xs-12">
            {if $display_poweredby}	
		<div>
			© {'Y'|date} {l s='[1]Ecommerce software by %s[/1]' mod='blockcms' sprintf=['PrestaShop™'] tags=['<a class="_blank" href="http://www.prestashop.com">']}
		</div>
	    {/if}
            {$footer_text}
        </section>

	<!-- /Block CMS module footer -->
{/if}

...questo vale per il tema di default, forse dovrai adattare ad eventuali personalizzazioni nel tuo tema

Edited by ariom (see edit history)
Link to comment
Share on other sites

Buonasera Arion, grazie per la risposta tempestiva sto impazzendo

io ho questo sul tpl:

 

getPageLink('sitemap')|escape:'html':'UTF-8'}" title="{l s='Sitemap' mod='blockcms'}">
{l s='Sitemap' mod='blockcms'}
</a>
</li>
{/if}
</ul>
<div class="bottom-footer col-xs-12">
{$footer_text}
</div>
</section>
<!-- /MODULE Block footer -->
{/if}
 
il tema l'ho acquistato su addons, lo sviluppatore ha creato appositamente
questo file css dopo avergli fatto notare altri problemi nel footer
 
#block_various_links_footer{
position: static;
}
.footer-container #footer .bottom-footer {
    position: absolute;
text-align: center;
font-size:12px;
    bottom: -28px!important;
    left: 0;
}
 
ho provato ad aumentare a -50px il bottom ma scompare in basso dallo schermo :( 
 
Ora
come posso spaziare le informazioni del CMS ( chi siamo, dove siamo, contatti ecc.) con la scritta del footer?
 
p.s.
il footer è una informazione obbligatoria ai termini di legge, la lancio lì agli sviluppatori di Prestashop:
perchè non fare un modulo a se, separato dal blocco CMS?
Link to comment
Share on other sites

prova ad aggiungere il padding nel css

 

.footer-container #footer .bottom-footer {
    position: absolute;
    text-align: center;
    font-size:12px;
    bottom: -28px!important;
    left: 0;
    padding-top: 20px;
}
e vai a tentativi  ...
Link to comment
Share on other sites

Risolto... Ecco come:

ho modificato il global.css

 

4329     .footer-container #footer {
4330    clear: both;
4331    padding-top: 35px;
4332    padding-bottom: 100px; }

 

 

alla riga 4332 ho cambiato da 35px (che era di default) a 100px

aumentando così lo spazio vuoto al piedi pagina.

 

successivamente è bastato aprire il file css inviato dallo sviluppatore ed aumentare da -28px a -60px (evidenzio in grassetto subito sotto per facilitare la comprensione)

 

#block_various_links_footer{
position: static;
}
.footer-container #footer .bottom-footer {
    position: absolute;
text-align: center;
font-size:12px;
    bottom: -28px!important;
    left: 0;
}
 
YES  :) 
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...