Responsive form issues

Tim created the topic: Responsive form issues

After testing form on mobile, not all fields work well in mobile devices...

1. Custom html field. Text falls off the screen on mobiles.

2. Multi choice. 4 rows with 4 cols of checkbox layout, 2 columns falls of the screen.

Anyway to correct these issues, I need the form to work well on all screen sizes.

#23489

Please Log in or Create an account to join the conversation.


Support replied the topic: Responsive form issues

Dear Tim,

Please give us direct link to your form. Also we are preparing a new release of our product where responsivity is improved.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#23541

Please Log in or Create an account to join the conversation.


Tim replied the topic: Responsive form issues

This is the last item on the list to finish the site off, any eta on when the the next release will be?

#23557

Please Log in or Create an account to join the conversation.


Support replied the topic: Responsive form issues

Dear Tim,

This release will be ready nearly in a month.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#23575

Please Log in or Create an account to join the conversation.


Tim replied the topic: Responsive form issues

Hey guys...any updates/news and release date for the new form version to handle responsive sites?

Have a site just swinging in the wind waiting for the responsive fix/update guys!

I need to purchase the pro version, not just the freebie guys!

#24382

Please Log in or Create an account to join the conversation.


Support replied the topic: Responsive form issues

Dear Tim,


The release isn't ready yet.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#24404

Please Log in or Create an account to join the conversation.


Tim replied the topic: Responsive form issues

After a month waiting and still no fix...really???

You guys still advertise "Responsive" Come on guys, get it together!

#24575

Please Log in or Create an account to join the conversation.


Support replied the topic: Responsive form issues

Dear Tim,

Currently we are on testing stage of that release. We'll let you know as soon as we finish testing.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#24620

Please Log in or Create an account to join the conversation.


Tim replied the topic: Responsive form issues

Thanks for the update!

#24651

Please Log in or Create an account to join the conversation.


Rupert Griffiths replied the topic: Responsive form issues

I managed to fix this using CSS. Setting a lot of the div widths to 100% as a max, and using @media over-rides too

#24655

Please Log in or Create an account to join the conversation.


Tim replied the topic: Responsive form issues

Any updates on the new version release date yet?

#25098

Please Log in or Create an account to join the conversation.


Support replied the topic: Responsive form issues

Not Yet.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#25179

Please Log in or Create an account to join the conversation.


Tim replied the topic: Responsive form issues

Come on guys...never seen a module take this long to mod!

#25200

Please Log in or Create an account to join the conversation.


David Finch replied the topic: Responsive form issues

I have the same issue for a clients web site that uses your plugin.
As Google now rates sites on there mobile compatibility this is a major issue.
Do you Have a DATE that I can tell my clients when the issue will be fixed.
Otherwise I have no choice but to find another form for them to use as this is effecting there company image.

#25580

Please Log in or Create an account to join the conversation.


Support replied the topic: Responsive form issues

Dear users,

All who have this issue please write us at [email protected], we'll make necessary editing on your websites for having fully responsive form until we'll be able to update our plugin and the issue will be automatically solved.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#25584

Please Log in or Create an account to join the conversation.


Tim replied the topic: Responsive form issues

---

#25609

Please Log in or Create an account to join the conversation.


David Finch replied the topic: Responsive form issues

David Finch wrote: I have the same issue for a clients web site that uses your plugin.
As Google now rates sites on there mobile compatibility this is a major issue.
Do you Have a DATE that I can tell my clients when the issue will be fixed.
Otherwise I have no choice but to find another form for them to use as this is effecting there company image.


Since we all knew about the changes to Google Algo in January, why have I, One not received a fix you said you would email to me or Two Updated the plugin. Guys and Gals it's not that ruddy hard to get an update ready when you have 4 months pre warning this will be an issue, and now you want $10 off me so I can move a form from test site to real site. Not how to run a business guys.

#25700

Please Log in or Create an account to join the conversation.


Support replied the topic: Responsive form issues

Dear David,

We are sorry for the inconvenience you are facing. We're working on the problem and will make it appropriately responsive as soon as possible.

Thank you.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#25766

Please Log in or Create an account to join the conversation.


Toby replied the topic: Responsive form issues

Rupert Griffiths wrote: I managed to fix this using CSS. Setting a lot of the div widths to 100% as a max, and using @media over-rides too


Hi Rupert, I too have been trying to find a fix for this. I've been setting the widths to a percentage.
When you say "100% as the max" are you referring to the CSS command 'max-width:' or just 'width:' ?

Also, how are you typing your '@media' CSS please?

Thanks for reading :)

#25884

Please Log in or Create an account to join the conversation.


Rupert Griffiths replied the topic: Responsive form issues

For this form: vsh.com.hk/contact-link/feedback

I used:

.wdform_row {
max-width:95%;
}
.wdform-page-and-images {
width: 90%!important;
display: block!important;
}
.wdform-section-break-div {
min-width: inherit!important;
}
.wdform_section {
display: inline-block;
max-width: 100%!important;
}
.wdform_column {
max-width: 100%!important;
}
.wdform-field {
display: block!important;
max-width: 100%!important;
}
.wdform-element-section {
max-width: 100%!important;
}


@media (max-width: 480px) {
.wdform-label-section {
width: 80%!important;
clear:both;
}
}

#25885
The following user(s) said Thank You: Toby

Please Log in or Create an account to join the conversation.


Support replied the topic: Responsive form issues

Dear Toby,

You can also use @media screen and (max-width: [screen resolution]) to add the necessary queries. For example:

@media screen and (max-width: 480px) {
     .wdform-label-section {
           width: 80%!important;
           clear:both;
     }
}

And Rupert, thank you for sharing the information.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#25896

Please Log in or Create an account to join the conversation.


David Finch replied the topic: Responsive form issues

Thank you Rupert.

Inserted code into custom CSS and I have a fully responsive form.

Thank you again for a simple and quick fix.

#25905

Please Log in or Create an account to join the conversation.


Toby replied the topic: Responsive form issues

Hi Rupert,
For some reason, the CSS you posted didn't work for my form. I don't know why, as looking at it, it seems to make sense. Thank you for sharing your code fix anyway. :)

For my form to be fixed, I was told by Support to keep the font-size: at 14px !important; within textarea
- and was also advised to keep my textareas in the form answers to width 200px instead of 250px

This seemed to work, as the form was contained within the page while viewing on my iPhone.

#25906

Please Log in or Create an account to join the conversation.


Toby replied the topic: Responsive form issues

Support wrote: Dear Toby,

You can also use @media screen and (max-width: [screen resolution]) to add the necessary queries. For example:

@media screen and (max-width: 480px) {
     .wdform-label-section {
           width: 80%!important;
           clear:both;
     }
}

And Rupert, thank you for sharing the information.


Hi Support,
I have taken your suggestion and tried adding this, at the bottom of my Theme CSS file:

@media screen and (min-width: 481px; max-width: 10000px) {
.wdform-label-section { /* Question area */
font-size: 1.0em;
}
.wdform-element-section { /* Answer area */
font-size: 1.0em;
}
}

@media screen and (min-width: 1px; max-width: 480px) {
.wdform-label-section { /* Question area */
font-size: 1.0em;
}
.wdform-element-section { /* Answer area */
font-size: 0.6em;
}
}

It is intended to make the text in the answer (multiple choice) area, smaller on a smartphone.
- However, I have found that it has shrunk the text in the 'Answer areas' on a full screen browser - when I only intended this to happen when viewing on a smartphone.

Any suggestions welcome.

#25907

Please Log in or Create an account to join the conversation.


Support replied the topic: Responsive form issues

Dear Toby,

Could you please give us a link, where we can check this?
Thank you.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#25916

Please Log in or Create an account to join the conversation.


Time to create page: 0.357 seconds
Powered by Kunena Forum

WORLD-CLASS SUPPORT

We are here for you every step of the way. Turn to our support with any questions you might have about our products and services. Our experienced customer care team is available to help you as fast as we possibly can.

Contact us