PDA

View Full Version : Hi, Banner question


MikaGrin
Jun-15-2008, 05:08 AM
.gallery_4500206 #my_banner {
display: none;
}
This code make not appear the banner in the gallery 4500206, but y try the same thing with categories and sub-categories pages and it doesn't work.

question:

How can i make not appear a banner in a specific category or sub-category page? there is a code for that? mika

Allen
Jun-15-2008, 05:44 AM
.gallery_4500206 #my_banner {
display: none;
}
This code make not appear the banner in the gallery 4500206, but y try the same thing with categories and sub-categories pages and it doesn't work.

question:

How can i make not appear a banner in a specific category or sub-category page? there is a code for that? mika
Try one of these. Change the category name/sub-cat name to yours.

/* whole category */
.category_Family
#my_banner {display: none;}

/* specific category page only */
.category.category_Family
#my_banner {display: none;}

/* all sub-cats under category */
.category.category_Family.subcategory
#my_banner {display: none;}

/* specific sub-cat */
.category.category_Family.tempClass.subcategory.su bcategory_Family_2008_June
#my_banner {display: none;}