• On desktop, my CTA button is fine and visible. But on mobile, I would like my CTA button to be visible throughout their experience. Can I add something to my functions.php or style.css to achieve this?

    Thanks

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

Viewing 1 replies (of 1 total)
  • Hello,

    You want to show the desktop view on mobile. If yes, please try to add the below snippet code in the functions.php file of your child theme and check.

    function no_meta_viewport() {
      return false;
    }
    add_filter( 'ocean_meta_viewport', 'no_meta_viewport' );
Viewing 1 replies (of 1 total)
  • The topic ‘Want to move menu button to outside hamburger menu’ is closed to new replies.