Hello,
We have checked out your Website and as we mentioned before all the Touch Devices are treated as same and not specifically Android or iOS.
However, since the Codes available with Canvas is already capable of handling this based on the Device's OS, consider adding the following JS Code at the bottom of the page just after the js/functions.js JS File Linking:
jQuery(document).ready( function(){
if( SEMICOLON.isMobile.Android() ) {
jQuery('body').addClass('device-android');
}
});
Then you can simply add the following CSS Code for Visibility Control for Android Devices:
body.device-touch.device-android .visible-android,
body.device-touch.device-android .visible-android-block { display: block !important; }
body.device-touch.device-android .visible-android-inline-block { display: inline-block !important; }
body.device-touch.device-android .visible-android-inline { display: inline !important; }
body.device-touch.device-android .hidden-android { display: none !important; }
and add the Classes .visible-android and .hidden-android to the Elements you want to show/hide on Android Devices.
This will Definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.