View Single Post
  #324  
Old 11-21-2013, 04:13 AM
 
PhilJ PhilJ is offline
 

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

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
Would this involve generating css from the bootstrap site? Will the auto-generated css (leaving out the responsive aspects), work with reboot Version 2?

Constanza, have you thought about upgrading to v2? It's free and fairly easy, but requires v4.6.1.

Obviously these days, there's a huge variety of devices with differing screen sizes.

reBOOT v2 behaves like this with the most common widths... (as per Bootstrap 3's default responsiveness)

http://www.xcartmods.co.uk/reboot/461/reboot_testing_tool.html

Mobile Portrait - W320px (responsive)
Mobile Landscape - W480px (responsive)
Small Tablet - W768px (responsive)
Tablet / Small Desktop - W1024px (normal)
Medium Desktop Upwards - W1280px and above (normal)

To change the .container class width, depending on screen widths, use this example code...

Code:
@media (min-width: 1024px) { .container { width: 960px; } }

Quote:
Can you please let me know if mega menu addons will be released for version 2?

In v2, mega menus are built in. Just enable them in the reBOOT settings.

Quote:
How can I add manufacturer in mega menu?

I have added a new option to display manufacturers in the mega menu...

Post a support ticket for instructions.

Quote:
How to display 4 products or 5 products always irrespective of small or large monitors?

You need to edit skin/reboot/css/reboot_media_queries.css

Set the # of columns according to the media queries...

Code:
ul.grid_view li { width: 25%; }

1 column = 100%
2 columns = 50%
3 columns = 33.33%
4 columns = 25%
5 columns = 20%
6 columns = 16.66%

I wouldn't advise it for smaller widths, as the product listing layout may appear squished for some devices.

Quote:
How Can I add two different tabs similar like feedback in the left hand side or righ hand side sidebar?

Possible with the inbuilt code, like the theme switcher widget, but would need to be custom coded. Contact for quote.
__________________
xcartmods.co.uk
Reply With Quote