View Single Post
  #542  
Old 04-10-2014, 12:08 PM
 
PhilJ PhilJ is offline
 

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

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
On the menu colors - I am using the custom theme. I copied your code into that file and although I can change background color I am not able to change the color of the text (Up state on clickable links - Home, View Cart, Help). When I inspect the element it does refer to a "sticky-wrapper" class..?

Edit skin/reboot/custom/reboot_head.tpl

Replace...

Code:
.sf-menu, .sf-menu li { background: {/literal}{$config.Reboot.reboot_style_M01}{literal}; } .sf-menu ul li { background: {/literal}{$config.Reboot.reboot_style_M02}{literal}; } .sf-menu a { color: {/literal}{$config.Reboot.reboot_style_M03}{literal}; } .sf-menu li:hover, .sf-menu li.sfHover { background: {/literal}{$config.Reboot.reboot_style_M04}{literal}; } .sf-menu a:hover { color: {/literal}{$config.Reboot.reboot_style_M05}{literal}; }

With...

Code:
.sf-menu, .sf-menu li { background: {/literal}{$config.Reboot.reboot_style_M01}{literal}; } .sf-menu ul li { background: {/literal}{$config.Reboot.reboot_style_M02}{literal}; } .sf-menu a { color: {/literal}{$config.Reboot.reboot_style_M03}{literal} } .sf-menu a:hover { color: {/literal}{$config.Reboot.reboot_style_M05}{literal}!important; } .sf-menu li:hover { background: {/literal}{$config.Reboot.reboot_style_M04}{literal}; } .sf-menu li.sfHover { background: {/literal}{$config.Reboot.reboot_style_M04}{literal}; } .sf-menu li.sfHover a { color: {/literal}{$config.Reboot.reboot_style_M05}{literal}; } .sf-menu li.sfHover li a { color: {/literal}{$config.Reboot.reboot_style_M04}{literal}; } .sf-menu li.sfHover li a:hover { color: {/literal}{$config.Reboot.reboot_style_M05}{literal}; } .sf-arrows > li > .sf-with-ul:focus:after, .sf-arrows > li:hover > .sf-with-ul:after, .sf-arrows > .sfHover > .sf-with-ul:after { border-top-color: {/literal}{$config.Reboot.reboot_style_M05}{literal}!important; } .sf-arrows ul li > .sf-with-ul:focus:after, .sf-arrows ul li:hover > .sf-with-ul:after, .sf-arrows ul .sfHover > .sf-with-ul:after { border-left-color: {/literal}{$config.Reboot.reboot_style_M05}{literal}!important; }

Then set your colours in the reBOOT custom theme settings. It gives you a little extra control.

Quote:
On .ico file, which one is the default one used with v2?
favicon.ico - Here's a quick icon generator

Once uploaded to skin/reboot/ico , you'll probably need to clear your browser cache to see the icon update.
__________________
xcartmods.co.uk
Reply With Quote