That is, home displays %logo %cats and all the rest display %pages %logo
So, here's my current setup:
Header has %pages %logo %cats
To hide %pages on the home page, it was pretty simple enough:
body.home #menu1 {display:none;}
However, I'm having a trickier time with displaying %cats only on the home page. I'm calling %cats by default in the header info, so I figured I would 1) have to make the default display as none 2) override that on the just the home page to display. This is my CSS insert:
To hide %cats:
HTML Code:
#menu2 { display:none; }
HTML Code:
body.home #menu2 {display:inline;}
Would it be easier to use a PHP if statement around the %cats callout?