Notifications
Clear all

Limited Support

Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.

We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!

Merry Christmas and Happy Holidays! 🎄

[Solved] Modify desktop view

3 Posts
2 Users
1 Reactions
645 Views
Coder
Posts: 20
Topic starter
(@coder)
Eminent Member
Joined: 2 years ago

I would like to modify the desktop view as shown in the attached image (move an icon + add text field. Could some wizard tell me where in the vastness of css-world I can find where to play around? (I guess it's simply a matter of changing some @media)

Thanks a lot


2 Replies
Tutrix
Posts: 1521
(@tutrix)
Noble Member
Joined: 6 years ago

Hi @coder 

these are the two media queries

use a higher value for screen max-width (960px and 800px)

@media screen and (max-width: 960px) {
#wpforo #wpforo-wrap .wpfl-4 .wpf-thread .wpf-thread-forum-mobile {
display: block;
}
}
@media screen and (max-width: 800px) {
#wpforo #wpforo-wrap .wpfl-4 .wpf-thread-box.wpf-thread-forum, #wpforo #wpforo-wrap .wpfl-4 .wpf-threads-head .wpf-thead-forum, #wpforo #wpforo-wrap .wpfl-4 .wpf-thread-box.wpf-thread-status, #wpforo #wpforo-wrap .wpfl-4 .wpf-threads-head .wpf-thead-status {
display: none;
}
}

add it to custom css
Dashboard > wpForo > Settings > Colors & Styles > Custom CSS


1 Reply
Coder
(@coder)
Joined: 2 years ago

Eminent Member
Posts: 20

@tutrix you are amazing! Thanks a lot Tutrix