View Single Post
  #30  
Old 10-17-2016, 07:24 AM
 
PhilJ PhilJ is offline
 

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

Default Re: X-Cart - Ultra - Responsive Template

Quote:
On the header, I only have 5 categories. What numbers do I need to put in for 5 categories?
If you get in touch by live chat or whatever, I'll talk you through it.
Quote:
Also, I would like to get the speed bar in the upper header. How can I do that?
You could insert a compact dropdown speedbar menu in skin/ultra/custom/header/header_upper_style_x.tpl with code like this...
Code:
<div class="btn-group"> <button type="button" class="btn btn-sm btn-info dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Links</button> <div class="dropdown-menu"> {section loop=$speed_bar name=sb step=-1} {if $speed_bar[sb].active eq 'Y'} <li><a class="dropdown-item" href="{$speed_bar[sb].link|amp}" title="{$speed_bar[sb].title}">{$speed_bar[sb].title}</a></li> {/if} {/section} </div> </div>
You can see what I mean at the very bottom of this page.
__________________
xcartmods.co.uk
Reply With Quote