[solved] Can I change a div background on each page
[solved] Can I change a div background on each page
I am trying to change the background of a particular div on each page. When I made the site in HTML it was easy to do with inline CSS. What should I do now to dynamically load those images?
Last edited by occasio on Mon Aug 04, 2008 1:00 pm, edited 1 time in total.
-
viebig
Re: Can I change a div background on each page
well, it depends: do you random images? specifics images for specifics sections?
Re: Can I change a div background on each page
You could use pagealiases for classnamens:
Code: Select all
<div id="container" class="{$page_alias}">
...
</div>
#container.pagealias1 { background-color: red }
#container.pagealias2 { background-color: blue }Re: Can I change a div background on each page
That did it. Thanks so much.sn3p wrote: You could use pagealiases for classnamens:
Code: Select all
<div id="container" class="{$page_alias}"> ... </div> #container.pagealias1 { background-color: red } #container.pagealias2 { background-color: blue }

