ive removed all of the widgets at the bottom of the site but would like to only have the copyright information. is there a way to place that in the blue bar at the bottom like i've described? www.new.gcbox.com
you can just use a text widget....or delete the whole footer like what I did and just have the copyright info. http://mkwebdesign.org/
you have a very nice site. i tried doing that, but the other two columns wind up showing the widgets i removed if i try this approach. any other suggestions would be greatly helpful.
go to footer.php and delete all the code from there (remember to copy it somewhere first just in case you need it back) then paste this in <hr> <div style = "clear: right; float: right; text-align: right;"> <p class="copyright">© 2013 put your business name here</a></p> </div>
Go to the footer.php file present in your theme directory and paste the code given below in that file as shown in the below image . Code: <div class="footer_bottom"> <div class="container_24"> <div class="grid_24 footer_copy"> <div class="copyright"> <p>© 2013 put your business name here</p> </div> </div> </div> </div> Now, Paste the following code in your custom css Appearance -> Theme Options -> Styling Options -> Custom CSS Code: .footer-content { display: none; } .footer_copy { background: #005a72; width: 986px ! important; margin-left: -13px; } .footer_bottom .footer_copy .copyright p { color: white; text-align: right; padding-top: 12px; padding-right: 5px; } This will solve your issue