Hey there Steve,
Hope you’re well today!
Not sure about the search bar/icon, I can’t see on on your site. As for the other two questions this can be done by adding some custom CSS. Try adding the following CSS code in the style.css file of your child theme or if your theme doesn’t have custom CSS tab add it in your site using the following plugin:
http://wordpress.org/plugins/simple-custom-css
#footer-sidebar {
padding: 15px 0px;
}
a.ngg-album-desc {
color: #008000;
}
First numeric value in padding property (15px) represents top and bottom padding of the footer widget. Reduce the value to what ever suits you the most. As for the color please change the color hex value (#008000) to the color of your choice.
Hope this helps.
Best regards,
Bojan
Hi Bojan, the NGG code worked for changing the color, but the widget spacing didnt. Also, I do not use the top menu which is maybe why you couldnt see the search bar/icon at all.
Cheers,
Steve
Hey again Steve,
Try adding this code for the footer widget padding:
#footer-sidebar {
padding: 0;
}
This should move it closer to the content.
Hope this helps 🙂
Cheers,
Bojan
Hi Bojan,
Sorry I tried this but it didnt work. Any other suggestion?
Cheers,
Steve
I don’t see the code that Bojan suggested on your website. Were there any errors when you tried to add that code?
Sorry, I deleted it when it didnt work. I have just reentered the code, so you should see it now.
Cheers
Hey there Steve,
The code did work http://screencast.com/t/NSUT3aKjbaA, there is also 15px margin on top of that padding. Please also add this:
#footer-sidebar .footer-column {
margin: 0;
}
Best regards,
Bojan