> I got a page (index.mako) which has some custom CSS in this case it
> changes the header background to a different image just for that page.

You already got 'normal' suggestion, let me only mention that for this
very case I would consider CSS-specific solution. Well known idiom:

- in HTML

<body id="blahblah">
...
</body>

- in CSS

#header {
   background: ...default-one...;
}

#blahblah #header {
   background: ...specific-one...;
}

Of course you can also rewrite it to classes instead of ids.


-- 
----------------------------------------------------------------------
| Marcin Kasperski   | You have the right to produce quality work
| http://mekk.waw.pl |          at all the times. (Beck)
|                    |
----------------------------------------------------------------------


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to