• Resolved douglasfilipe

    (@douglasfilipe)


    I wanna show .storefront-handheld-footer-bar for iPad’s Pro, 12.9 inch. How can I do this in my css code?

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello douglasfilipe,

    Add below code in your current active child theme’s functions.php file.

    add_action('wp_head', 'my_custom_css');
    function my_custom_css(){
      if ( wp_is_mobile() ) {
        $style = '<style>
          .storefront-handheld-footer-bar {
            display: block !important;
          }
        </style>';
        echo $style;
      }
    }

    Hope this will helps you.

    Thanks.

    Thread Starter douglasfilipe

    (@douglasfilipe)

    works great! Thanks!!!!

    dougaitken

    (@dougaitken)

    Automattic Happiness Engineer

    Hey @douglasfilipe

    Glad this worked for you.

    Thanks for the custom code @addweb-solution-pvt-ltd

    I’m going to mark this as resolved – if you have any further questions, you can start a new thread.

    Thanks,

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Footer Handled Bar’ is closed to new replies.