We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Mobile friendly.... - Contact Us | Forum

Rob
Rob Sep 11 '16
Dear developers, Almost everything is mobile friendly, but why not the plugin " Contact us".?
Darryl B Leader
Darryl B Jan 8 '17
Here is a solution that works to make it more mobile friendly. I will look at adding it to my themes. Just copy, and paste it into your custom css in the admin panel. Of course this is for responsive themes, and not for the Oxwall mobile version.

@media only screen and (min-device-width : 320px) and (max-device-width : 480px){
form[name="contact_form"] .ow_table_1 {
    width: 100% !important;
}
form[name="contact_form"] .clearfix {
    width: 100% !important;
}
}
@media only screen and (min-device-width : 481px) and (max-device-width : 767px) {
form[name="contact_form"] .ow_table_1 {
    width: 100% !important;
}
form[name="contact_form"] .clearfix {
    width: 100% !important;
}
}
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
form[name="contact_form"] .ow_table_1 {
    width: 100% !important;
}
form[name="contact_form"] .clearfix {
    width: 100% !important;
}
}
I added this to my themes with tweaks for sidebar, and no sidebar.
The Forum post is edited by Darryl B Jan 14 '17
You do not have permission to reply this topic