It's definitely your theme. The theme has a ton of stylesheets and external scripts being loaded as well as a lot of inline styles and script blocks. It appears that something in your theme scripting is breaking the conditional logic on your form and the form isn't loading properly on the mobile devices.
I tested your form markup on another server and when I removed the following inline script block the form re-appeared.
/* <![CDATA[ */
$(document).ready(function() {
$('#slider').unoslider({
preset: 'fade',
slideshow: {speed: 12}
});
$('.dsidx-search-button input[type=submit]').val('Zoek');
$('#colorschemechanger .btn').click(function() {
var colorscheme = $('#color').val();
$.cookie("color", colorscheme);
window.location.href="http://www.informatik.com/themeforest/opendoor_realestate/index.php";
});
$('#resetcolorscheme').click(function() {
$.cookie("color", null);
window.location.href="http://www.informatik.com/themeforest/opendoor_realestate/index.php";
});
});
/* ]]> */
test screenshot (iPad) : http://i.imgur.com/bWMlLyE.jpg
You can show that to your theme developer and let him help you from there. Best of luck.
Posted 12 years ago on Wednesday April 10, 2013 |
Permalink