Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!
Merry Christmas and Happy Holidays! 🎄
Oct 15, 2021 2:25 pm
Hello,
Any css guru to provide the correct css for doing this (the @matt rounded background):
Thank you
(also pls include it in your next vs2 version)
8 Replies
Oct 15, 2021 3:01 pm
i use this little code to add a css class to it
add_action( 'wp_head', function () { ?>
<script>
$(document).ready(function () {
$('.wpforo-post-content a:contains("@")')
.addClass("member-nickname");
});
</script>
<?php } );
now you can style via .member-nickname
for the code I use the Code Snippets plugin
surely also works with the functions.php of your WP Theme