This forum is no longer open and is for reading/searching only.
Please use our new MachForm Community Forum instead.
MachForm Community Forums » MachForm 3
3.4 guidelines issue
Started 11 years ago by MBS77 | 5 posts |
-
Thanks for 3.4 update , it's great however on my forms i use several large guidelines that then take up a page when viewed on a mobile phone, any way to disable or conditionally turn off guidelines when viewing form on mobile device?
thanks
Posted 11 years ago # -
It is possible to disable the guidelines when viewing form on mobile devices. You can edit your "machform/view.mobile.css" file.
Search around line 55 for this code:#main_body form li .guidelines{ background: none !important; border: none !important; font-size:105%; line-height:100%; margin: 0 !important; padding: 0 0 5px; visibility:visible; width:100%; position: static; clear: both; }
change it to become:
#main_body form li .guidelines{ background: none !important; border: none !important; font-size:105%; line-height:100%; margin: 0 !important; padding: 0 0 5px; display: none !important; width:100%; position: static; clear: both; }
MachForm Founder
Posted 11 years ago # -
Thanks Yuniar, that worked a treat, excellent product, excellent support, most impressed, all the best, thank you.
Posted 11 years ago # -
Can th "Pagination Header Style" also be removed from mobile site in this manner?
Posted 11 years ago # -
Yes, below the above block of code, you can add this:
#main_body form li.li_pagination{ display: none !important; }
MachForm Founder
Posted 11 years ago #
Reply
You must log in to post.