Add a Community Title after the Logo
Hey, can we have the option to add the community title after the header logo? I managed to do it with CSS:
add_action('fluent_community/portal_head', function() {
?> < STYLE >
.top_menu_left::after {
content: "CUSTOM TITLE"; / Replace with your desired title /
display: inline-block;
margin-left: 8px; / Adjust spacing as needed /
font-size: 16px; / Adjust font size as needed /
color: #333; / Adjust color as needed /
font-weight: bold; / Optional: make the text bold /
} < /STYLE >
\<?php
});