Hi

To remove the default tablet design, you will need to update redirect script on the main website. Specifically the lines below:

var ipad = true;               // Set to false to not redirect on iPad.

var other_tablets = true;  // Set to false to not redirect on other tablets.

As stated in the comment text change the value from 'True' to 'False'.

So the code should look like this:

var ipad = false;               // Set to false to not redirect on iPad.

var other_tablets = false;  // Set to false to not redirect on other tablets.


Code example:

<script type="text/javascript">


var ipad = true;               // Set to false to not redirect on iPad.

var other_tablets = true;  // Set to false to not redirect on other tablets.

var mobile_domain = "domain.cloudhostedresources.com";

var path = encodeURIComponent(location.href);

var page = "?&url=" + path;

document.write('<link rel="alternate" media="only screen and (max-device-width: 1024px)" href="' + location.protocol + '//' + mobile_domain + page + '" >');

document.write(unescape("%3Cscript src='" + location.protocol + "//s3.amazonaws.com/me.static/js/me.redirect.min.js' type='text/javascript'%3E%3C/script%3E"));

</script>

Kind regards,