Apr 16, 2021 3:16 am
Hi, can signature be prevented in full from showing up on mobile devices? or at least, to make them not clickable in there as in mobile obviously they fully take visitors off the forum
Thanks 🙂
2 Replies
Apr 19, 2021 7:27 pm
You can use this CSS code to hide signatures on mobile devices. Insert this CSS code in Dashboard > Forums > Settings > Styles > Custom CSS Code textarea, save it, delete all caches, go to forum front-end and press Ctrl+F5:
@media screen and (max-width:600px) { #wpforo #wpforo-wrap .wpfl-4 .wpforo-post .wpforo-post-signature{ display:none; } }
Apr 19, 2021 7:37 pm
Great!, thanks Robert 🙂