Introduction
By default, there is no built-in option to change the page title font size for the Activity Feed, Groups, and Members pages. However, you can adjust the font size by applying a custom CSS workaround.
Custom Workaround
Follow the steps below to change the page title font size:
- Go to Theme Options
- Under Custom Codes, enable CSS
- Append the following code:
.entry-title {
font-size: 40px !important; /* Change this value to your desired font size */
}- Save your changes.
Troubleshooting and FAQs
Q: The page title font size did not change after adding the CSS.
A: Please clear your site cache, browser cache, and any CDN cache, then refresh the page.
Q: Can I use a different font size for specific pages only?
A: Yes. You will need to target a more specific page class or ID instead of using .entry-title globally.
Q: Will this affect other page titles on my site?
A: Yes. This CSS applies to all elements using the .entry-title class. Limiting the selector is recommended if you only want specific pages affected.
Q: What should I do if the code is not working as expected?
A: If the code is not working, please submit a ticket to the support team for further assistance.
Screenshots
Without Code (default):

With Code:
