How do I edit the site footer to look relatively similar to this?
Creators Science | Nucleo Jor BR
I just wanted a small image on the side, but what I would really like to implement on my blog would be some social media icons and a menu with links to some pages.
I managed to create a custom footer, but I don’t know how to integrate the theme’s original footer with the custom one, and thus remove the duplicate information (highway to unicorn, signup and powered) I even managed to remove it, but what I really wanted was to integrate, pull the information from the original footer that is on top of the custom one I created, does anyone have any idea if it’s possible to do this?
my blog
Your new footer looks great!
I’m guessing you put the raw HTML in code injection, rather than editing the theme? To hide what’s being provided by the theme, put this into your code injection
<style>
footer.site-footer.outer {
display: none;
}
</style>
1 Like
Aw, thanks, yes I injected the code directly, I’ll try it and see what happens. 
Is there a way, instead of hiding the default theme footer, to insert it below the custom footer?
You’d need to edit the theme
Thanks for the help, I made some adjustments, I’m liking the result, there are still things to improve, but I’ll take a look at the topic more calmly. 
1 Like