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