PDA

View Full Version : css question


joergmark
01-28-2007, 04:11 PM
hi, i would like to format my contact form with css. in the manual are some examples how to color the error text red:

.fabrikerror{
color:red;
}

i need to format the intro text and the Title element... is there a list of all handlers.

i tried .fabrikintrotext but i did not work...

thanks
joerg-mark

rob
01-29-2007, 09:31 AM
the introtext doesn't currently have a class assigned to it

If you need to you can edit the file components/com_fabrik/tmpl/form/div_div/form.html

and replace


<p>{FABRIK_INTRO}</p>


with


<p class="fabrikintrotext">{FABRIK_INTRO}</p>


The heading uses the standard Joomla class "componentheading"

There's currently no complete list of these class names, I tend to use firefox and the firebug extension to view the classes of part of the page.