[Plugin: Custom Contact Forms] Request: more flexible CSS in CCF plugin
-
The Custom Contact Form uses style definitions inside the body tag.
These definitions cannot be overridden. Look at the source code of a page where the CCF is placed. You’ll see what I mean.e.g. There is a definition for the label style. This is cascaded under the #form-1-[10-digit number] selector. E.g.:
#form-1-1292242762 label { padding:0; background-color:inherit; margin:5px 5px 5px 0; display:block; color:#333333; width:200px; font-size:1em; }I would change this to something like:
#form-1-1292242762 label { padding:0; background-color:inherit; margin:5px 5px 5px 0; display:inline-block; text-align: right; color:#333333; width:200px; font-size:1em; }However, the 10-digit number is generated dynamically. So there is no way I can specify label styles, not even in the custom html I can add in the Form Display Code.
Would it be possible to change this style block so that the #form-1 selector doesn’t get the random 10-digit number but just keeps a fixed name? That way I could override this css by placing a style definition in the custom code. Since this custom code is placed after the generated style block it would override the previous definitions, provided I could specify the same selectors.
Isn’t it sufficient to make the selector unique by just adding the ranking number? #form-1 #form-2 #form-3 etc.
This would give this nice plugin the flexibility I would like.
(oc I could hack the php so the random number is not added hehe)
e-
The topic ‘[Plugin: Custom Contact Forms] Request: more flexible CSS in CCF plugin’ is closed to new replies.