Dec 27, 2019 7:05 pm
Hello,
I've got a layout problem with my search page. The results table is too width.
An example:
https://www.pondlibrary.com/forum/?wpfs=winter
Probably a css problem but I can't find it.
3 Replies
Dec 28, 2019 9:54 am
Hi @ief,
Please navigate to Dashboard > Forums > Settings > Style Tab admin page, put the following CSS code in the "Custom CSS code" textarea, save it, delete all caches and check again.
#wpforo #wpforo-wrap .wpforo-search-wrap .wpforo-search-content td.wpf-stext{
white-space: pre-wrap !important;
}
Don't forget to press Ctrl+F5 (twice) on the forum frontend before checking to reload the updated CSS file.
Dec 28, 2019 10:31 am
I see the same issue on the "Resent post" page. To solve the issue, put the CSS code in the "Custom CSS code" textarea as well:
#wpforo #wpforo-wrap .wpforo-recent-content table{
table-layout: fixed;
}
#wpforo #wpforo-wrap .wpforo-recent-content li i + a{
display:inline-block;
width: 70%;
overflow: hidden;
text-overflow: ellipsis ;
white-space: nowrap;
}
Dec 28, 2019 3:21 pm
Wonderful. Thanks.