PDA

View Full Version : Category specific header?


mountainhouse
Aug-20-2006, 08:29 PM
Can't seem to get this to work. Would like a separate header/banner for each category/sub-category. Just trying to get the css worked out right now. I can get the "Italy header" to appear on a gallery, but not on a particular category. Tnx

frankB

#my_header {
display: none;
}

#my_header img {
width:600;
height:50;
border:0;
}

.homepage #my_header {
display: block;
margin-left:auto;
margin-right:auto;
background: url(http://mountainhouse.smugmug.com/photos/85230086-L-2.gif);
height: 50px;
width: 600px;
}

.category_Italy #my_header {
display: block;
margin-left:auto;
margin-right:auto;
background: url(http://mountainhouse.smugmug.com/photos/89560120-L.gif);
height: 50px;
width: 600px;
}

richW
Aug-20-2006, 09:15 PM
FrankB,

Try this:

.subcategory_Italy #my_header {
display: block;
margin-left:auto;
margin-right:auto;
background: url(http://mountainhouse.smugmug.com/pho...560120-L.gif); (http://mountainhouse.smugmug.com/photos/89560120-L.gif);)
height: 50px;
width: 600px;
}

mountainhouse
Aug-21-2006, 04:16 AM
FrankB,

Try this:

.subcategory_Italy #my_header {


Thanks very much!

frankB