• Resolved gatestar

    (@gatestar)


    Hi I am wanting fields side by side still on mobile what is the breakpoint and can I adjust it?

Viewing 1 replies (of 1 total)
  • Plugin Author Aurovrata Venet

    (@aurovrata)

    This is pure CSS, so yes you can override this. The current cut-off is 480 screen width in px.

    You can filter this value with the cf7sg_responsive_width hook,

    
    add_filter('cf7sg_responsive_width', 'change_mobile_cutoff',10,2);
    function change_mobile_cutoff($px, $form_key){
      return 320;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Mobile Break Point’ is closed to new replies.