Home › Forums › Basel support forum › Moved: Reply To: shop item page
Moved: Reply To: shop item page
- This topic has 14 replies, 3 voices, and was last updated 4 years, 5 months ago by eayodele.
-
AuthorPosts
-
June 18, 2020 at 3:46 pm #204628
eayodeleParticipantHello,
SHOP ITEM PAGE.
On the Basel ecommerce theme you have set the written description of the product next to the item to collapse underneath the product image at screen width 767px (for mobile devices). However I would need this to happen at around 1042px (tablets, portrait).Is this something you can help with?
Thanks
DeeAttachments:
You must be logged in to view attached files.June 19, 2020 at 9:02 pm #204926
Elise NoromitMemberHello,
Please add this code to the Theme Settings > Custom CSS > Global:
@media (min-width: 768px){ body .col-sm-8.product-images { width: 100%; } } @media (min-width: 768px){ body .col-sm-4.entry-summary { width: 100%; height:1000px; } }
Best Regards
June 24, 2020 at 1:19 am #205898
eayodeleParticipantHello,
Thank you for your assistance, I just slightly changed your code to suit my needs which has worked fine:
@media (max-width: 991px){
body .col-sm-8.product-images {
width: 100%;
}
}
@media (max-width: 991px){
body .col-sm-4.entry-summary {
width: 100%;
}
}However
1. In tablet ‘portrait mode’ the breadcrumbs at the top left are missing.
2. In tablet ‘landscape mode’ the text information at the side of the product is not visible when using the ‘Compact’ product page design selection.Please assist and many thanks
Regards
DeeAttachments:
You must be logged in to view attached files.June 24, 2020 at 1:29 pm #206101
Elise NoromitMemberHello,
Please add this code to the Theme Settings > Custom CSS > Global:
@media (max-width: 991px){ body .single-breadcrumbs-wrapper .woocommerce-breadcrumb { display: inline-block; } }
What width do you mean? I am checking and it works https://prnt.sc/t5ncv7
Best Regards
June 24, 2020 at 5:05 pm #206192
eayodeleParticipantHello,
Thanks for sorting out the breadcrumb issue.
I think maybe the iPads I have may be too old to display the compact style text. All other versions of the text work though!
Anyway please see image attached and let me know what you think.
Many thanks
DeeAttachments:
You must be logged in to view attached files.June 24, 2020 at 5:34 pm #206199
eayodeleParticipantHello,
Just noticed the same issue with the demo on your server (iPad)
https://demo.xtemos.com/basel/shop/other/new-brands/yomber-jacket-trim/
Kind regards
DeeAttachments:
You must be logged in to view attached files.June 25, 2020 at 6:42 am #206295
Elise NoromitMemberHello,
You can take this code:
@media (max-width: 991px){ body .single-breadcrumbs-wrapper .woocommerce-breadcrumb { display: inline-block; } }
Change the
991px
as per your needs and insert in the Global styles.Best Regards
June 25, 2020 at 9:37 am #206352
eayodeleParticipantHello,
The breadcrumb issue has already been resolved. The problem is .basel-scroll-content which is not showing next to the product image on iPad (landscape) view.
Kind Regards
DeeAttachments:
You must be logged in to view attached files.June 25, 2020 at 12:23 pm #206402
Elise NoromitMemberJune 25, 2020 at 1:53 pm #206442
eayodeleParticipantHello,
Unfortunately, this still did not work as the text still doesn’t show in landscape mode (portrait mode is fine).
Best Regards
DeeJune 25, 2020 at 5:32 pm #206489
eayodeleParticipantHello,
I have done some further research into this problem and it would seem that this is a browser issue as older versions of Safari (Safari 10) do not support the Product page ‘Compact’ option. Apple are now on Safari 13. All other earlier browsers support it though.
Is there a workaround for this issue?
Kind regards
DeeJune 26, 2020 at 7:59 am #206591
Elise NoromitMemberHello,
Please provide the site admin access to the private area.
Best Regards
June 26, 2020 at 9:49 am #206635
eayodeleParticipantHello,
Details attached.
Regards
DeeJune 26, 2020 at 1:51 pm #206724
Bogdan DonovanKeymasterHi,
1. Please put custom CSS code with
@media
to the Global CSS area since in other responsive areas in would not work (https://prnt.sc/t6ydma) since code in that areas already creates it own@media
selector.2. We have removed all our previous custom code related to the single product.
3. To make your single product in one column starting from display width 1048px and less, try to add the following custom CSS code to the Global Custom CSS area in theme settings (http://prntscr.com/t6yylf).
@media (max-width: 1048px){ .product-image-summary > .row > [class*="col"] { width: 100%; } .product-design-compact .basel-scroll { position: static; overflow: visible; } .product-design-compact .basel-scroll .basel-scroll-content { position: static; overflow: visible; padding-left: 0; padding-right: 0; } }
4. To show breadcrumbs on tablet devices in single product page try to add following code to the Tablet Custom CSS area in theme settings (http://prntscr.com/t6yzs9).
.single-breadcrumbs-wrapper .woocommerce-breadcrumb, .single-breadcrumbs-wrapper .yoast-breadcrumb { display: inline-block; }
5. Thank you for noticing the issue in Safari 10. This issue will be fixed in the next theme update.
Best Regards
June 26, 2020 at 4:30 pm #206742
eayodeleParticipantHello,
Thank you for your time with this issue. You can now close this topic.
Regards
Dee -
AuthorPosts
The topic ‘Moved: Reply To: shop item page’ is closed to new replies.
- You must be logged in to create new topics. Login / Register