Replies: 0
Hi,
I’ve figured out most of what I want to do with the Copyright section of the site. However, I’d like to amend the spacing between the two lines of content and can’t immediately see what I need to do. How would I go about doing this?
Thanks.
add_filter( 'generate_copyright','tu_custom_copyright' );
function tu_custom_copyright() {
?>
<h5><a href="https://richiesroom.com/about/">About</a> | <a href="https://richiesroom.com/site-map/">Site Map</a> | <a href="https://richiesroom.com/legal/">Legal</a></h5>
© <?php echo date("Y"); ?> Richie's Room | Made with <a href="https://generatepress.com/"><strong>GeneratePress</strong></a> | Hosted with <a href="https://krystal.uk/"><strong>Krystal Hosting</strong></a>
<?php
}