Browse Source

Change the copyright to span

pull/463/head
danpros 4 years ago
parent
commit
96af6de09e
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      system/includes/functions.php
  2. +1
    -1
      themes/blog/layout.html.php

+ 2
- 2
system/includes/functions.php View File

@ -1889,9 +1889,9 @@ function copyright()
$credit = 'Powered by <a href="http://www.htmly.com" target="_blank" rel="nofollow">HTMLy</a>';
if (!empty($blogcp)) {
return $copyright = '<p>' . $blogcp . '</p><p>' . $credit . '</p>';
return $copyright = '<span class="copyright">' . $blogcp . '</span> <span class="credit">' . $credit . '</span>';
} else {
return $credit = '<p>' . $credit . '</p>';
return $credit = '<span class="credit">' . $credit . '</span>';
}
}


+ 1
- 1
themes/blog/layout.html.php View File

@ -185,7 +185,7 @@
<!-- ******FOOTER****** -->
<footer class="footer">
<div class="container text-center">
<?php echo copyright();?>
<?php echo copyright();?><br><span>Design by <a href="https://3rdwavemedia.com/" target="_blank" rel="nofollow">3rd Wave Media</a></span>
</div><!--//container-->
</footer><!--//footer-->
<!-- Javascript -->


Loading…
Cancel
Save