I want to place disclaimer text in the footer area just above the copyright information text and the footer link. Where do I go to add in these text?
Hi qleapent You can use footer widget area to add a disclaimer text, just go to widget and add a 'text widget' to 'first footer widget area'. However if you want it between footer widget and footer copyright area you need to edit you footer.php file. Go to line no 15 and find '<div class="bottom_footer_container">' just above it, paste the codes given below. Edit "Your disclaimer info here". Code: <div class="bottom_footer_container"> <div class="container_24"> <div class="grid_24"> <div class="bottom_footer_content"> <div class="grid_24"> <div class="copyrightinfo"> <p class="copyright">Your disclaimer info here</p> </div> </div> </div> </div> </div> <div class="clear"></div> </div>