
-
AuthorPosts
-
June 8, 2021 at 5:43 am #1304530
Address:
Browser: Both Safari & Chrome on iPAD/iPhone.
Problem:
1. Table can be show on PC chrome correctly.
2. But on Safari & Chrome on Apple mobile device. Number is highlighed in same color as table background and become invisible.June 9, 2021 at 11:43 am #1304841Hey shtzhang,
Thank you for the inquiry.
Did you add this css code?
.main_color a, .main_color .widget_first, .main_color strong, .main_color b, .main_color b a, .main_color strong a, .main_color #js_sort_items a:hover, .main_color #js_sort_items a.active_sort, .main_color .av-sort-by-term a.active_sort, .main_color .special_amp, .main_color .taglist a.activeFilter, .main_color #commentform .required, #top .main_color .av-no-color.av-icon-style-border a.av-icon-char, .html_elegant-blog #top .main_color .blog-categories a, .html_elegant-blog #top .main_color .blog-categories a:hover { color: #6786a1; }
You may need to override it with the following css rule to change the color of the price on mobile view.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .main_color .avia-pricing-row strong { color: #ffffff; } }
Best regards,
IsmaelJune 10, 2021 at 10:12 am #1305033No. I didn’t write this.
Whe should I write and override this?
Thank you.
Scott
June 11, 2021 at 5:39 am #1305187Hi,
Thank you for the update.
You can add the last css code that we posted above to override the first one. You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code. And please purge the cache or remove the browser cache before checking the page.
Best regards,
IsmaelJune 11, 2021 at 12:34 pm #1305252Hi Ismael,
Thank you for quick response. I tried and it works now on phone (both Chrome & Safari). But on Tablet, it’s still not displayed yet. Any suggestion for that?
Best Regards!
ScottJune 14, 2021 at 4:21 am #1305486Hi!
Sorry for the delay. To make it work on tablet screens, please adjust the css media query or look for this line.
@media only screen and (max-width: 767px) {
Replace 767px with 989px.
Regards,
IsmaelJune 15, 2021 at 1:10 am #1305689Hi Ismael,
Thank you for you reply. it works on portrait mode on tablet. But since most of tablet resolution is very hight. I test on iPAD air 3rd (2224*1668) and Lenovo Tab M10 Full HD (1920*1200). Both on Chrome & Safari. Yes on Portrait and fail on landscape mode.Thank you.
Scott
June 16, 2021 at 1:17 pm #1305989Hi,
Try to adjust the media query further or create another media queries for those devices. You can find examples of css media queries for different devices in the following article.
// https://css-tricks.com/snippets/css/media-queries-for-standard-devices/
Best regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.