Adding link to footer
-
Hello,
I’m using the Sela theme, and although I know how to remove the WordPress credits and add my own copyright information, I don’t know if I can add links in the footer.
This is the text in the footer:
Copyright © 2016 Cynthia Ranjeeta. Terms & Conditions.Is there any way I can make the Terms&Conditions part clickable by inserting a link to a page?
Thanks so much for the help 🙂
-
Hi,
You can add like below
<a href="YOUR_LINK">Terms & Conditions</a>Where do I have to add this?
I added my footer text with this:
.site-info {
visibility: hidden;
}
.site-info:before {
visibility: visible;
content: “This is my Text”;
display: block;
}I don’t see how I can add it to this…
Please clarify.
Thanks
please send your site link.
Put the code in style.css then you will see “This is my Text” 🙂
Hi @utterlycynthia,
There isn’t a way to add a link via CSS, however, you can make changes to your site’s HTML via a child theme.
The following guides provide good introductions to how child themes work as well as steps to set one up:
- http://wordpress.tv/2015/05/12/kathryn-presner-getting-comfortable-with-child-themes/
- https://codex.wordpress.org/Child_Themes
After you have created your child theme, copy the footer.php file from your parent theme to your child theme’s directory. You can then manually add the HTML for your link just below the following:
<div class="site-info" role="contentinfo">Let us know how you get on with that or if you have any extra questions!
The topic ‘Adding link to footer’ is closed to new replies.
