Hiding the feedback button on mobile devices

  • baysidejournal
    Asked on January 6, 2015 at 2:43 AM

    I had asked a question how do i make the feedback form responsive on my website , which is BAYSIDE JOURNAL but i got no response.

    Can anyone tell me how can i remove the feedback button plugin which i installed on my wordpress website , i want to remove this button from my website.

     

    Hiding the feedback button on mobile devices Image 1 Screenshot 30 Feedback button to be removed.

     

     

     

     

    Also this is my form look on mobile , i can help making it responsive would be great.Hiding the feedback button on mobile devices Image 2 Screenshot 41

    Jotform Thread 490842 Screenshot
  • Jan
    Replied on January 6, 2015 at 9:02 AM

    Hello,

    You can hide the feedback button by adding this CSS media query code in your Wordpress stylesheet

    Hide in smartphones only:

    @media only screen and (max-width : 480px) {

    .jotform-feedback-link {display: none;}

    }

    Hide in both smartphones and tablets:

    @media only screen and (max-width : 1024px) {

    .jotform-feedback-link {display: none;}

    }

    Hope this helps. Thank you.