• Resolved lvwrz

    (@lvwrz)


    Hi there, I’ve already found a solution for the font size on desktop, however I’d like to increase the font on tablet and mobile devices as well.
    Any solution?

    By the way, the following snippet code is what used for that purpose

    if ( ! function_exists( ‘yith_wcwl_filter_wa_share_url’ ) ) {
    function yith_wcwl_filter_wa_share_url( $data ) {
    $data[‘share_atts’][‘share_whatsapp_url’] = ‘INSERT HERE YOUR SHARE URL’;

    return $data;
    }
    add_filter( ‘yith_wcwl_wishlist_params’, ‘yith_wcwl_filter_wa_share_url’ );
    }

    Thanks!

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi there

    Could you please be more specific on the elements that you’d like to have a greater font-size?
    Could you please attach a screenshot highlighting what you want to change?

    Thank you

    Thread Starter lvwrz

    (@lvwrz)

    Hi again, thanks for your quick response!

    See attached the screenshot with the font size which I’d like to increase.
    https://drive.google.com/file/d/1ZH_J3BLMIMnoXcw0loFopXWubA0lpjkd/view?usp=sharing

    To be more specific, it would be all the features related to: when the product was added, price, quantity and stock.

    Thank you

    Plugin Author YITHEMES

    (@yithemes)

    Hi again

    Please, try to add the following CSS rules to Additional CSS section of your theme customizer (WP Dashboard -> Appearance -> Customize)

    .wishlist_table.mobile {
        padding: 0;
    }
    .wishlist_table.mobile table.item-details-table,
    .wishlist_table.mobile table.additional-info {
        font-size: 1.5em;
    }
    .yith_wcwl_wishlist_bulk_action label {
        margin-bottom: 15px
    }
    

    This is my final result on your installation

    Thread Starter lvwrz

    (@lvwrz)

    Works perfect!! Really appreciate it.

    Thank you very much for your support!!

    Plugin Author YITHEMES

    (@yithemes)

    You’re welcome!

    We are doing our best to improve our plugins. Our target is to develop and release the best free plugins for WooCommerce, but to achieve this we need your help. Please leave a good review to support us and help our growth ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Font Size on Mobile Device’ is closed to new replies.