Hi there, We're not currently going to be using the second and third footer block. Is there a way to remove them so it doesn't leave a big gap before the fourth block? Thanks!
Hello, You can remove second & third block by open template footer.css and find Code: .footer .footerMain .footerThird { float: left; width: 18%; min-height: 174px; padding: 0 15px 10px 20px; } Change to Code: .footer .footerMain .footerThird { display: none; } Find Code: .footer .footerMain .footerSecond { float: left; width: 18%; min-height: 174px; padding: 0 15px 10px 20px; } Change to Code: .footer .footerMain .footerSecond { display: none; } Find Code: .footer .footerMain .footerFirst { float: left; width: 34%; padding-left: 10px; } Change to Code: .footer .footerMain .footerFirst { float: left; width: 75%; padding-left: 10px; }
Thanks! That worked brilliantly! Can you tell me where to change the footer height? We just want the youtube/twitter/etc links and thats it! Thanks again.
Hello, You can change footer height by open template footer.css and find Code: .footer .footerMain .footerFourth { float: left; width: 18%; min-height: 174px; padding: 0 15px 10px 20px; } Change to Code: .footer .footerMain .footerFourth { float: left; width: 18%; min-height: 65px; padding: 0 15px 10px 20px; } Regards.