PDA

View Full Version : Keep Nav Bar off particular CATEGORY?


DeeRich
Apr-16-2009, 12:52 PM
Can't find anything that addresses this: Is there a code to keep the nav bar off a particular category?

Thanx,

DeeRich

denisegoldberg
Apr-16-2009, 01:06 PM
Can't find anything that addresses this: Is there a code to keep the nav bar off a particular category?
It would be a lot easier for us to help you if you would include your site address in your signature.

Assuming that your navbar is in a div called #navcontainer, you would add CSS like this (after filling in the appropriate category name):

#navcontainer {
display: block;
}
.category_yourCategoryName #navcontainer {
display: none;
}

--- Denise

DeeRich
Apr-16-2009, 04:49 PM
It would be a lot easier for us to help you if you would include your site address in your signature.

Assuming that your navbar is in a div called #navcontainer, you would add CSS like this (after filling in the appropriate category name):

#navcontainer {
display: block;
}
.category_yourCategoryName #navcontainer {
display: none;
}

--- Denise


Thank you Denise!!
It worked perfectly; no problems! :clap

DeeRich

P.S. Sorry about not including the site name; I do know to...just thought it would be a "generic" question.