Introduction
If you want to adjust the text size of the Activity Post Header or the Activity Post text, there is no built-in setting to control this. However, you can customize their appearance by adding a CSS snippet to change the font sizes to better match your design preferences.
Custom Workaround
Change Activity Feed Header Font Size
- Go to Theme Options
- Under Custom Codes, enable CSS
- Append the following code:
.activity-header p {
font-size: 18px;
}
.activity-header a {
font-size: 18px;
}- Save changes
You may adjust the font size value to your preferred size.
Change Activity Feed Post Text Font Size
- Go to Theme Options
- Under Custom Codes, enable CSS
- Append the following code:
.buddypress-wrap .activity-inner {
font-size: 20px !important;
}- Save changes
This will update the font size of the main activity post content.
Troubleshooting and FAQs
Q: The font size did not change after adding the CSS.
A: Clear your site cache, browser cache, and any CDN cache, then refresh the activity page.
Q: Can I use different font sizes for desktop and mobile?
A: Yes. You can wrap the CSS in media queries to apply different sizes per screen size.
Q: Will this affect other areas of the site?
A: No. These CSS rules only target the activity feed header and activity post text.