Hi there,
Hoping you can help with a tag issue I am having with my posts. When I add tags to a post page, they are actually appearing in the content page randomly.
See the image I have pasted below.
Any idea what could be going wrong here?
Thanks for your help as always.
Best
/D
Hi dcashion!
Thank you for using the theme.
Maybe, you have forgotten to close a certain html tag and it’s breaking the layout of the post. The tags should be place below the content by default. Do you mind if we take a look at the actual page?
Cheers!
Ismael
Hi!
Please try adding following code to Functions.php file in Appearance > Editor
function add_custom_script(){
?>
<script>
jQuery(window).load(function(){
jQuery("span.blog-tags.minor-meta").prependTo(".av-share-box");
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_script');
Regards,
Yigit
Hi Yigit
Thanks for this – works great but is there any way to insert some spacing between the tags and the social media sharing buttons? They’re a bit on top of each other. Best /D
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.av-share-box .av-share-link-description { margin-top: 20px; }
Best regards,
Yigit
Thanks Yigit, perfect.