I WANT A BANNER FOR MY HOMEPAGE, AND ONE FOR A CATEGORY, BUT NOT ON THE REST OF MY PAGES, DOABLE?
Sure, it's actually a combination from the posts above; Add "display: none;" to the original code.
Then add:
.homepage #my_banner {
display: block;
}
.category_Travel #my_banner {
display: block;
background: url(
http://nickname.smugmug.com/photos/12345678_aBcDe-O.jpg) no-repeat;
}
The Travel category is an example, and can be any category you like.
If you leave out the line starting with "background:" in the last portion of the code, the Travel category will have the same header as the homepage.
PROBLEMS? Have a look at the problems-flowchart on the right (click on it to get a larger version).
New comment: Requires approval