Hi @larryx,
Put this CSS code in Dashboard > Forums > Settings > Styles > Custom CSS Code Textarea. Save it, delete all caches, go to forum front-end and press Ctr+F5 to reset browser cache:
#wpforo-wrap #wpforo-title {
padding: 20px 0 10px 20px;
}
Thread Starter
larryx
(@larryx)
Worked 100%. Thank you.
How/is there a way to change the color and/or the font in this area?
—————————-
I have another question about spacing. Namely the opposite side of the title area where “Unread Posts” It is justified immediate right, on the edge of the forum title area. I would like it to have the same spacing from the edge as the code you just provided for the left side of the title area. Is there a separate code for that side? It is already centered top to bottom nicely.
Unread Post
Unread Post fixed
Thank you!
Hi @larryx,
How/is there a way to change the color and/or the font in this area?
You’ll just need to add the following lines in the above-mentioned code:
font-size: 25px !important;
color: #443496;
The values of the font-size and color can be changed as you like.
I have another question about spacing. Namely the opposite side of the title area where “Unread Posts” It is justified immediate right, on the edge of the forum title area. I would like it to have the same spacing from the edge as the code you just provided for the left side of the title area. Is there a separate code for that side? It is already centered top to bottom nicely.
Please use the following code:
#wpforo-wrap .wpforo-feed {
padding: 0 20px 0 0;
}
Please don’t forget to delete all caches and press CTRL+F5(twice) on the frontend before checking.