Notifications
Clear all

wpForo 1.x.x [Closed] Turning off signature for mobile devices

3 Posts
2 Users
1 Reactions
581 Views
Jesus
Posts: 287
Topic starter
(@jesus)
Reputable Member
Joined: 4 years ago

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
Robert
Posts: 10590
Admin
(@robert)
Support Team
Joined: 9 years ago

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;
    }
}
Jesus
Posts: 287
Topic starter
(@jesus)
Reputable Member
Joined: 4 years ago

Great!, thanks Robert 🙂