Apr 15, 2019 9:58 am
Hi,
I have wpForo and on mobile, there is quite a bit of padding on either side which makes it look really narrow. Is there a way to fix this without it changing anything on a desktop/laptop?
I know someone else had an issue with this but the solution for them didn't work for me unfortunately.
Thanks
2 Replies
Apr 15, 2019 10:05 am
Hi @ash,
Please add the following CSS code in Dashboard > Forum > Settings > Stylys > "Custom CSS code" textarea. Save it, delete all caches and check again.
@media (max-width: 320px){
.container {
min-width: 100% !important;
}
}
@media screen and (max-width: 620px){
#wpforo #wpforo-wrap {
padding: 10px 1px !important;
}
}
Use private browser session to check in mobile, mobile browser cache is very hard. On the PC just press Ctrl+F5 do delete browser cache.