[Typo3] Image background...
Christopher
bedlamhotel at gmail.com
Thu Sep 29 16:42:27 CEST 2005
On 29/09/05, Kristian Wind <kw at hovsa.dk> wrote:
> Hi Eirik and Peter,
>
>
> I thing there is a bit confusion here. I am fully aware of how use
> opacity. What I need is how to attach the class to images - inside
> Typo3. What I mean is: what is the class-name for images in Typo3?
>
Do you (a) need a way to selectively add classes to individual images,
or do you (b) need a way to apply styles to all images, or (c) will
the images you need to style always appear in the same html context?
(a) is tricky :-)
(b) could be achieved in css like this:
img { /* styles */ }
(c) could be done this way:
/* Styles every img inside <div id="content"> */
div#content img { /* styles */ }
or this way:
/* Applies certain styles to all p and ul inside <div id="content"> */
div#content p,
div#content ul { /*styles */ }
/* Applies (presumably different) styles to all td inside <div id="content"> */
div#content td { /* styles */ }
Do any of these give you a way to solve the problem?
-Christopher
More information about the TYPO3-english
mailing list