This topic is locked

How to disable Inline Edit when user is on Mobile device

7/6/2016 12:01:16 PM
PHPRunner Tips and Tricks
admin

You can add the following to 'Custom CSS' section under 'Style Editor':

@media (max-width:767px) {

[id^=iEditLink] {

display:none;

}

}