Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls
 

X-Cart - reBOOT - Responsive Template

 
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4
 
Thread Tools
  #231  
Old 09-18-2013, 01:20 PM
 
costanza costanza is offline
 

Senior Member
  
Join Date: Apr 2011
Location: Canada
Posts: 152
 

Default Re: X-Cart - reBOOT - Responsive Template

Hi Phil,

Have you found a solution to this?

Internet Explorer is showing product lists grid view, and I have lists set to show products by rows. It is fine in FF & Chrome & cache is not the issue.

Quote:
Originally Posted by PhilJ

This is an IE8 issue only, I'll investigate.

Since IE8 is the newest IE version for XP users, it is a very common browser and a fix is really important.

Thanks!
__________________
X-Cart Business 5.4.1.49
Reply With Quote
  #232  
Old 09-18-2013, 10:31 PM
 
Learner Learner is offline
 

X-Adept
  
Join Date: Dec 2008
Posts: 807
 

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
Originally Posted by PhilJ
I'm in the process of updating reboot for v4.6.1.


Thanks for your quick and valuable reply...But tell me if existing X-Cart_Reboot_Template_v1.2_(X-Cart_v4.6.0) will work on 4.6.1 platinum then the updated versions contains only the patch which can easily been patched on v1.2_ easily for 4.6.1 platinum?

In addition, I will be adding more features and optimisations to reBOOT, but it's not going to be ready until October (I am currently away on holiday).

What about optimizations will load faster than current once ?

Quote:
As v4.6.1 is mainly a bugfix release, the current v1.21 reBOOT files should work fine with v4.6.1, without many (if any) hiccups.

If any issue arises then?

Thanks again..
__________________
4.6.1 Platinum


Reply With Quote
  #233  
Old 09-19-2013, 03:14 AM
 
gozindagi gozindagi is offline
 

Advanced Member
  
Join Date: Jul 2013
Posts: 61
 

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
Originally Posted by PhilJ
If using the mega menu addon, try this...

In skin/reboot/custom/header/header_mega_menu.tpl

Replace...
Code:
<li><a href="{if $c.childs}#sub{else}home.php?cat={$c.categoryid}{/if}"{if $c.childs} class="arrow"{/if}>{$c.category}</a>
With...
Code:
<li class="cat_{$c.categoryid}"><a href="{if $c.childs}#sub{else}home.php?cat={$c.categoryid}{/if}"{if $c.childs} class="arrow"{/if}>{$c.category}</a>

Still it is not working after adding this code...Can u pls tell me how to make different color?

Pls help me...
__________________
X-cart Platinum 4.6.0
Reply With Quote
  #234  
Old 09-19-2013, 08:20 AM
  totaltec's Avatar 
totaltec totaltec is offline
 

X-Guru
  
Join Date: Jan 2007
Location: Louisville, KY USA
Posts: 5,823
 

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
Originally Posted by gozindagi
Can u pls tell me how to make different color?
Pls help me...
Can you provide a link to you site and describe in detail what you want to do?
__________________
Mike White - Now Accepting new clients and projects! Work with the best, get a US based development team for just $125 an hour. Call 1-502-773-6454, email mike at babymonkeystudios.com, or skype b8bym0nkey

XcartGuru
X-cart Tutorials | X-cart 5 Tutorials

Check out the responsive template for X-cart.
Reply With Quote
  #235  
Old 09-19-2013, 10:38 AM
 
PhilJ PhilJ is offline
 

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

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
Still it is not working after adding this code...Can u pls tell me how to make different color? Pls help me...

gozindagi, here is the solution for changing the root category background colours on the mega menu...

in skin/reboot/custom/header/header_mega_menu.tpl

Replace...

Code:
<li><a href="{if $c.childs}#sub{else}home.php?cat={$c.categoryid}{/if}"{if $c.childs} class="arrow"{/if}>{$c.category}</a>

With...

Code:
<li class="cat_{$c.categoryid}"><a href="{if $c.childs}#sub{else}home.php?cat={$c.categoryid}{/if}"{if $c.childs} class="arrow"{/if}>{$c.category}</a>

Then in skin/reboot/css/reboot_mega_menu.css

Add CSS like this (let's say you are using mega menu style 3)...

Code:
.style-3.menu ul li.cat_123 { background-color: #FF0000; }

Replace 123 with your category ID
Replace #FF0000 with the colour you want
__________________
xcartmods.co.uk
Reply With Quote

The following user thanks PhilJ for this useful post:
gozindagi (09-19-2013)
  #236  
Old 09-19-2013, 11:57 PM
 
gozindagi gozindagi is offline
 

Advanced Member
  
Join Date: Jul 2013
Posts: 61
 

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
Originally Posted by PhilJ
There is actually a way to 'wrap' category names...

In your case you wish to wrap after the ampersands, so in skin/reboot/custom/header/categories_header.tpl

Replace...

Code:
{$c.category}

With...

Code:
{$c.category|replace:"&":"&<br>"}

Hello,
Thanks for the codes now the color working fine.Great you are.

But in case of wrap category names it is not showing as I expected.I want the same design like-

http://www.gozindagi.com/devgoz/Health%20Shoppe%20Header%28reboot%29.jpg


But it is showing in this manner-

http://www.gozindagi.com/devgoz/gozindagidevgoz.jpg
__________________
X-cart Platinum 4.6.0
Reply With Quote
  #237  
Old 09-20-2013, 05:59 AM
 
PhilJ PhilJ is offline
 

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

Default Re: X-Cart - reBOOT - Responsive Template

You could try giving them a minimum width, eg.

.style-3.menu ul li { min-width: 100px; }

Kindly do not post any more threads on your issue, take it to a support ticket if necessary.
__________________
xcartmods.co.uk
Reply With Quote

The following user thanks PhilJ for this useful post:
gozindagi (09-20-2013)
  #238  
Old 09-20-2013, 06:00 AM
 
PhilJ PhilJ is offline
 

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

Default Re: X-Cart - reBOOT - Responsive Template

New RSS feeds displayer addon for reBOOT just added (free). Get it from http://www.xcartmods.co.uk/reboot/
__________________
xcartmods.co.uk
Reply With Quote
  #239  
Old 09-20-2013, 10:40 PM
 
gozindagi gozindagi is offline
 

Advanced Member
  
Join Date: Jul 2013
Posts: 61
 

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
Originally Posted by PhilJ
You could try giving them a minimum width, eg.

.style-3.menu ul li { min-width: 100px; }

Thanks for your great help.I can do after changing in CSS

Quote:
Kindly do not post any more threads on your issue, take it to a support ticket if necessary.

Sorry Sometimes it happens that I have not received reply from ticket so I post here.

Ok I have not send any issue again...
__________________
X-cart Platinum 4.6.0
Reply With Quote
  #240  
Old 09-24-2013, 02:21 AM
 
gozindagi gozindagi is offline
 

Advanced Member
  
Join Date: Jul 2013
Posts: 61
 

Default Re: X-Cart - reBOOT - Responsive Template

hello,
Can anyone tell if magneticone make a deal and follow up autoresponder are compatible with reboot or not?
__________________
X-cart Platinum 4.6.0
Reply With Quote
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 01:02 AM.

   

 
X-Cart forums © 2001-2020