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
  #891  
Old 03-26-2015, 10:05 PM
  christindall's Avatar 
christindall christindall is offline
 

eXpert
  
Join Date: Dec 2007
Location: Everett, WA
Posts: 264
 

Default Re: X-Cart - reBOOT - Responsive Template

Sounds like a perfect solution! Thanks so much!



Quote:
Originally Posted by PhilJ
Hi Chris, I've never really kept a list of live stores using reBOOT, that I would give out, mainly for licence holders privacy.

However I do quite often get asked for URLs, so I've just added a new section to the docs page, with a form that allows anyone to opt-in to have their store listed, if they so wish.
__________________
Chris Tindall
x-cart 4.7.5 Gold Plus
www.theweedpatchstore.com
AlteredCart: On-Sale, One Page Checkout, Checkout One Payments (although that's not working yet)
BCSE: Back in stock Notify, Checkbox Radio Mod, Upselling Links
SMACK: CDSEO Pro, Product Map
X-Cart: Gold+, Mobile
(still trying to get working: Gahela Support Suite)
Reply With Quote
  #892  
Old 03-30-2015, 01:03 AM
 
xtech xtech is offline
 

X-Adept
  
Join Date: Jun 2010
Posts: 605
 

Default Re: X-Cart - reBOOT - Responsive Template

Hi Phil,
Have there any custom form builder in x-cart where all data will entered in database and data will receive in an email id.

How to achieve that?

Thank you.
__________________
X-cart Platinum
4.6.1
Reboot template
Reply With Quote
  #893  
Old 04-03-2015, 12:08 PM
  Vacman's Avatar 
Vacman Vacman is offline
 

X-Adept
  
Join Date: Sep 2005
Location: Torrance, CA
Posts: 792
 

Default Re: X-Cart - reBOOT - Responsive Template

Some of my product descriptions have click-able links in the text. I want to add a highlight (possibly underline as image shows). I know this would be a .css mod, but not sure where to look.

http://www.vacsew.com/images/activelink.png
__________________
Carl Tice

X-Cart 4.6.6
X-Payments 3.0
ReBOOT 3.4.1

PHP 5.6.30
MySQL 5.6.35
Linux 2.6.32-042stab120.18
ionCube PHP Loader v4.7.3
Perl 5.10.1
Reply With Quote

The following user thanks Vacman for this useful post:
PhilJ (04-03-2015)
  #894  
Old 04-03-2015, 12:27 PM
 
PhilJ PhilJ is offline
 

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

Default Re: X-Cart - reBOOT - Responsive Template

You can go one further and add the Glossary addon.

So certain specified text will show a tooltip with text of your choice.

Demo
__________________
xcartmods.co.uk
Reply With Quote

The following user thanks PhilJ for this useful post:
ITVV (04-03-2015)
  #895  
Old 04-03-2015, 12:38 PM
  Vacman's Avatar 
Vacman Vacman is offline
 

X-Adept
  
Join Date: Sep 2005
Location: Torrance, CA
Posts: 792
 

Default Re: X-Cart - reBOOT - Responsive Template

Maybe? I'll take a look at it. Basically it is just an active link.
__________________
Carl Tice

X-Cart 4.6.6
X-Payments 3.0
ReBOOT 3.4.1

PHP 5.6.30
MySQL 5.6.35
Linux 2.6.32-042stab120.18
ionCube PHP Loader v4.7.3
Perl 5.10.1
Reply With Quote
  #896  
Old 04-03-2015, 12:53 PM
 
PhilJ PhilJ is offline
 

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

Default Re: X-Cart - reBOOT - Responsive Template

Add to skin/reboot/skin/reboot.css
Code:
.highlightme { border: 3px solid #B4E7F8; border-top: none; border-right: none; border-left: none; }
Then wrap your link text, or any text with...
Code:
<span class="highlightme"> ... </span>
__________________
xcartmods.co.uk
Reply With Quote
  #897  
Old 04-03-2015, 01:13 PM
  Vacman's Avatar 
Vacman Vacman is offline
 

X-Adept
  
Join Date: Sep 2005
Location: Torrance, CA
Posts: 792
 

Default Re: X-Cart - reBOOT - Responsive Template

Went to d/l but the link on your site is broken.
__________________
Carl Tice

X-Cart 4.6.6
X-Payments 3.0
ReBOOT 3.4.1

PHP 5.6.30
MySQL 5.6.35
Linux 2.6.32-042stab120.18
ionCube PHP Loader v4.7.3
Perl 5.10.1
Reply With Quote
  #898  
Old 04-06-2015, 09:45 PM
 
xtech xtech is offline
 

X-Adept
  
Join Date: Jun 2010
Posts: 605
 

Default Re: X-Cart - reBOOT - Responsive Template

Hi Phil,
I want to add html in category description and want to display it in responsive view so that it will display uniformly irrespective of device.How to achieve that?

Thanks,
xtech
__________________
X-cart Platinum
4.6.1
Reboot template
Reply With Quote
  #899  
Old 04-06-2015, 10:06 PM
 
PhilJ PhilJ is offline
 

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

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
I want to add html in category description and want to display it in responsive view so that it will display uniformly irrespective of device.How to achieve that?
That depends on what kind of HTML you want to display. If you want to use columns in the descriptions, utilise the Bootstrap responsive grid system.
__________________
xcartmods.co.uk
Reply With Quote
  #900  
Old 04-07-2015, 12:47 AM
 
xtech xtech is offline
 

X-Adept
  
Join Date: Jun 2010
Posts: 605
 

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
Originally Posted by PhilJ
That depends on what kind of HTML you want to display. If you want to use columns in the descriptions, utilise the Bootstrap responsive grid system.

Thank you for your help.I have added this code in head tag
HTML Code:
{literal} <style> .erb-image-wrapper img{ max-width:100% !important; height:auto; display:block; } </style> {/literal}

and call the html code in body
<div class="erb-image-wrapper">
My code here
</div>
But it is not working in Firefox.Can you please provide me browser specific code?

Thanks.
__________________
X-cart Platinum
4.6.1
Reboot template
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 10:57 PM.

   

 
X-Cart forums © 2001-2020