View Single Post
  #218  
Old 09-11-2013, 03:08 PM
 
PhilJ PhilJ is offline
 

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

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
Can the speed bar tabs be highlighted in different color.
Yes, in a similar fashion, in skin/reboot/custom/header/categories_header.tpl

Replace...
Code:
<li class="nosub"><a href="{$speed_bar[sb].link|amp}">{$speed_bar[sb].title}</a></li>
With...
Code:
<li class="nosub link_{$speed_bar[sb].id}"><a href="{$speed_bar[sb].link|amp}">{$speed_bar[sb].title}</a></li>
The use CSS...
Code:
li.link_123 { background: #FF0000; }
To get the speedbar IDs in the speedbar admin, in skin/common_files/admin/main/speed_bar.tpl

Replace...

Code:
<td><input type="text" size="45" name="posted_data[{%sb.index%}][title]" value="{$speed_bar[sb].title|escape}" /></td>

With...

Code:
<td><input type="text" size="45" name="posted_data[{%sb.index%}][title]" value="{$speed_bar[sb].title|escape}" />&nbsp;(ID: {$speed_bar[sb].id})</td>
__________________
xcartmods.co.uk
Reply With Quote