after

after pseudo-element in menu

Hello. I’m trying to add a content after the main menu items but I’ve got something like this https://prnt.sc/gzvpyr instead of something like this https://prnt.sc/gzvq6h I always use this css code #mymenu > li{ display: inline-block; } #mymenu > li:after{ content: "-"; } How could I achieve that using GeneratePress? Thanks!

How to add code and text/html before and after the category title

Add this code in your child theme functions.php to add code and/or text/html before and after the category title without editing the archive.php. Look at the code below to edit as you wish. // Add Shortcode for php code before category title function code_before_cat_title_custom_shortcode() { // start php code echo '</h1>'; echo '<p>Any php can … Read more