Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #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.

    #1304841

    Hey 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,
    Ismael

    #1305033

    No. I didn’t write this.

    Whe should I write and override this?

    Thank you.

    Scott

    #1305187

    Hi,

    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,
    Ismael

    #1305252

    Hi 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!
    Scott

    #1305486

    Hi!

    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,
    Ismael

    #1305689

    Hi 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

    #1305989

    Hi,

    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

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.