PDA

View Full Version : Homepage Custom Footer


carsonw
May-29-2009, 11:04 AM
I have a custom footer created but I would like to show in on all pages except the homepage, is this possible?

J Allen
May-29-2009, 11:08 AM
I have a custom footer created but I would like to show in on all pages except the homepage, is this possible?


:nod

Got a link to your site :ear

carsonw
May-29-2009, 11:49 AM
:nod

Got a link to your site :ear

Sorry, it's http://www.carsonwilcox.com

J Allen
May-29-2009, 12:05 PM
Put these tags around your whole custom footer box:




<div id="my-footer">

All your footer code here

</div>



Then add this to your CSS:





.homepage #my-footer
{display:none;}

carsonw
May-29-2009, 12:15 PM
Put these tags around your whole custom footer box:




<div id="my-footer">

All your footer code here

</div>


Then add this to your CSS:





.homepage #my-footer
{display:none;}





Thanks very much, I'll learn all of this, or at least some of it eventually