Home › Forums › Air WordPress Theme › How to add photo credits to footer
- This topic has 8 replies, 2 voices, and was last updated 4 hours, 46 minutes ago by
applemint.
- AuthorPosts
- January 18, 2021 at 7:26 pm #23608
My footer has two sets of information (the logo and social icons).
Underneath that I want to add a line of copyright info and underneath the copyright line, add credits of all photo’s of each particular page (meaning credits will be different on each page).
What are you recommendations on how to do this?
Thank you.January 19, 2021 at 1:25 am #23609Hi,
My footer has two sets of information (the logo and social icons).
Are the two sets of information on 2 different columns?
Regards!
SeaTheme – SeaTheme.net – Twitter – Facebook
January 21, 2021 at 8:04 pm #23652Hi,
That’s how they automatically show up, one next to the other. But I didn’t set it that way.
I went to Theme Options > General > Footer >
Footer Elements: 2 sets of information
Information 1: logo
Information 2: social Icons
RegardsJanuary 22, 2021 at 3:01 am #23656Hi,
It is possible to add a copyright
1)
Install a custom js plugin like Simple Custom CSS and JS, put the javascript codes by this plugin(Custom CSS & JS > Add Custom JS), add JS code:jQuery(document).ready(function( $ ){ $('.footer-info').append('<span class="air-copyright center-ux">Copyright</span>') });
2)
Please paste the custom CSS code to “Appearance > Customize: Additional CSS”.air-copyright{ position:absolute; bottom: 50px; font-size:12px; } .footer-info { position:relative; }
credits of all photo’s of each particular page (meaning credits will be different on each page).
It is not possible to add different credits for each particular page.
Regards
February 25, 2021 at 3:32 am #23960Hi,
Thank you for the above code. I just got into testing it and it works succesfully.
1. Since I’m adding more than one line, how to increase the space below the Footer Elements to give it more space?
2. Does adding this Javascript require the use of a Child Theme? I have been working on the parent theme so far.
Regards
February 25, 2021 at 4:15 am #23961Hi,
1) Please paste the custom CSS code to “Appearance > Customize: Additional CSS”
.footer-info {margin-bottom:20px;}
If it doesn’t work, please leave your website URL.2) You could add the JS code with child theme(custom.js) also. It is not necessary to install the plugin if you use child theme.
Regards
February 25, 2021 at 4:23 pm #23965Thank you.
1. Yes it works. Except that it causes the back to top arrow to not align anymore. Is the following code okay to fix that?
.container-fluid.back-top-wrap {bottom: 80px;}
Now that I understand which class to approach, I was wondering if instead of your above recommendation
.footer-info {margin-bottom:20px;}
, I could also do this?.footer-info {height: 230px;}
2. What I meant was, can I keep working in the parent theme with the added JS code with the plugin you recommended? Or will an update to the parent theme delete this code?
Many thanks and regards
February 25, 2021 at 5:00 pm #239663. I found a new issue with adding space to footer. When a page has very little content, it will now show the new footer credits, even though footer logo and social icons are covered/invisible. I would like the footer credits to be invisible as well. Can this be fixed? I will add links to show the issue.
February 25, 2021 at 5:01 pm #23967This reply has been marked as private. - AuthorPosts
- You must be logged in to reply to this topic.