View Single Post
  #1431  
Old 01-21-2020, 03:05 PM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart - reBOOT - Responsive Template

@ cheap, try this instead...

In /skin/reboot/custom/footer/footer_content_BP.tpl

Replace...
Code:
<ul class="angles footer"> {foreach from=$blog_latest item=post name=post} <li><a href="{$post.post_name}">{$post.post_title}</a></li> {/foreach} </ul>
With...
Code:
{foreach from=$blog_latest item=post name=post} <div class="footer-truncate{if $smarty.foreach.post.last} last{/if}"><i class="fa fa-angle-right"></i> <a href="{$post.post_name}">{$post.post_title}</a></div> {/foreach}
Then in /skin/reboot/css/reboot.css

At the end insert...
Code:
.footer-truncate { margin: 0; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.1); width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .footer-truncate.last { border-bottom: none; } .footer-truncate a:link { color: #fff !important; text-decoration: none !important; padding-left: 3px; }
Then clear the template cache.
__________________
xcartmods.co.uk
Reply With Quote