hey i have used your service it seems algood -
what i want to do is make the background black
also is the code that is generated ap divs or normal divs- i just need my code to be industry standard
i use dreamweaver also so wanted to use this to make a template.
i want to insert a editable regin in the content area that iv made in side the content div but it goes over the whole dock
when i put _centre does it have to be at the end of the layer nameor any where
great service by the way its got algood potential
For this reason you should
For this reason you should do it with css:
For complete body/background (or any tag):
body
{
bgcolor: #000000;
}
or for a single div:
#mydiv{
bgcolor: #000000;
}
or for more than one div you should do this with the class-attribute: (every layer needs class="myclass")
.myclass{
bgcolor: #000000;
}