Using Jigoshop with Foxy
Support Area › Forums › Foxy › Using Jigoshop with Foxy
Tagged: foxy, mobile, mobile device, smartphone
- This topic has 8 replies, 2 voices, and was last updated 12 years, 2 months ago by Jon Dunning.
-
AuthorPosts
-
September 5, 2012 at 14:01 #7427Jon DunningParticipant
I’ve been setting up an ecommerce type page within a site that I’ve built with Foxy. I’m using the Jigoshop plugin and everything is working fine when it’s viewed on a computer. However when it is viewed on a mobile device it doesn’t work properly.
I’ve posted on the Jigoshop forum about this problem but I can’t seem to find a solution there. I thought maybe it had something to do with the settings within Foxy and how it behaves on mobile devices.
To see what I mean you can check out what I’m building at
theferalpigkauai.com/temp-store
Any input would be greatly appreciated
September 5, 2012 at 20:51 #7431Bill RobbinsModeratorJon,
Let’s see if this doesn’t help. Go to the theme options page and select the styling tab. Scroll down to the Custom CSS tab and paste this:
@media only screen and (min-width: 768px) and (max-width: 991px) { .foxy-catalog, .page-content { margin-right: 0; width: 58% !important; } } @media only screen and (max-width: 767px) { .single .page-content { width: 90%; } div.product div.images, div.product div.summary { float: none !important; width: auto !important; margin-right: 0; } div.shr-bookmarks, div.shr-bookmarks-center, div.shr-bookmarks-expand { display: none; } article h1, h2.title, .page-content h1, h1.page-title { margin: 0 0 15px; } }
Save your settings and see if that helps. If you run into trouble, let me know.
Bill
September 5, 2012 at 23:13 #7435Jon DunningParticipantThanks for the input Bill but that didn’t seem to change anything. If I were to add that directly into the css file do you think it would make a difference?
September 6, 2012 at 08:44 #7438Bill RobbinsModeratorJon,
You could paste it to the very bottom of the style.css file. Let me know if you run into any trouble.
Bill
September 6, 2012 at 21:39 #7466Jon DunningParticipantSo as it seems, this fix did in fact work for each individual product page. they seem to be working fine now. The main product page with all the items, however, is unchanged.
So we appear to be on the right path. any thoughts on how to fix the main product page?
thanks for your help so far.
September 7, 2012 at 10:12 #7483Bill RobbinsModeratorJon,
Add this there as well to the custom css and see if that’s what you need:
@media only screen and (max-width: 767px) { .foxy-catalog { width: 90%; } }
In tweaking that earlier code, it looks like I left that out. If you have trouble, let me know,
BillSeptember 7, 2012 at 14:32 #7486Jon DunningParticipantAwesome Bill,
That did the trick for the product page. Thanks for all your help.
Should I add similar code for the Cart, Check-Out and Thank You pages where “.foxy-catalog {” is the name of each page? Those also need to be adjusted.
Thanks Again
September 10, 2012 at 16:45 #7525Bill RobbinsModeratorJon,
You are absolutely right. This will add in the shopping cart and checkout:
@media only screen and (max-width: 767px) { .foxy-catalog, .jigoshop-cart .page-content, .jigoshop-checkout .page-content { width: 90%; } }
And this will change the background color for the payment box too:
#payment, .payment_box { background: transparent !important; }
Have a great week,
BillSeptember 11, 2012 at 20:24 #7548Jon DunningParticipantThanks for all your help Bill.
-
AuthorPosts
- The topic ‘Using Jigoshop with Foxy’ is closed to new replies.