I don’t wanna use sub footer for my additional information –
“Also please I wanna make a small black strip in a footer and it looks so bigger with some amount of about words – https://snag.gy/G95iDe.jpg”
also please tell how can i change the color of email id that is coming in black??
Hello,
In the latest theme version you can use a page footer. Basically you create a new page and create the layout you need to show in the footer on that page. Then simply make it a footer page like so: https://www.screencast.com/t/wBC9mho32g
Thank you!
Hello,
The standard footer description info can be added in the theme panel footer section:
https://www.screencast.com/t/AGO9gYyI
If this or the sub-footer, or the page menu options are all 3 not viable solutions for you, then you should hire a freelancer to help out with a custom code.
Thanks
there is a simple question i have been asking here since a week.
How can I make footer small so that it can fit with my description
as you can see the description is less but black strip is big. i wanna make it fit or to small so it can fit
Also, Please tell me how can i change the color of email id text its black and not visible
Sorry for the misunderstanding. I believe you are using footer template 4, so a code like this will eliminate the default padding top and bottom, reducing the space
– https://www.screencast.com/t/TigUMGHf
Enter it in Theme panel->Custom CSS. If this is not working please mention the footer template you are using and I will modify the code
.td-footer-template-4 {
padding-top: 0;
padding-bottom: 0;
}
The email color will be the theme accent color set in the theme panel
– https://www.screencast.com/t/s9sMqiRj54AJ
If you want to keep the current theme accent color and change the email color, use a code like this
– https://www.screencast.com/t/BNxLqoVa
.footer-text-wrap .footer-email-wrap a {
color: blue;
}
Both codes work for me when using footer template 4, see here
Before – https://www.screencast.com/t/NCZn5EoyaMrD
With code – https://www.screencast.com/t/1XZsuhoB
These codes have to entered in Theme panel->Custom CSS sections. Clear all caching and check the results. Try the code in the theme Live CSS as well
– https://www.screencast.com/t/Z23sDJ6aL8QR