Notifications
Clear all

wpForo 1.x.x [Closed] Advance Search Problem

2 Posts
2 Users
0 Likes
1,068 Views
Posts: 17
Topic starter
(@winpeace)
Eminent Member
Joined: 5 years ago

how to remove some search section only mobile?

https://prnt.sc/lkk3u8

 
1 Reply
Sofy
Posts: 4309
 Sofy
Admin
(@sofy)
Support Team
Joined: 6 years ago

Hi @winpeace,

Use the following CSS. Just navigate to Dashboard > Forums > Settings > Styles admin page, put it in "Custom CSS Code" textarea. 

@media screen and (max-width: 620px){
.wpforo-td.wpfrtd {
display: none !important;
}
}

Don't forget to delete all caches before checking.