FormBUilder textarea table can't valign top

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Post Reply
User avatar
tern
Forum Members
Forum Members
Posts: 65
Joined: Tue Oct 16, 2007 1:00 pm

FormBUilder textarea table can't valign top

Post by tern »

Whats wrong with this table, i have been trying very hard to make it top, but it is still center...
Look the the "textarea message". http://www.redstarz.net/contact.html
thank you cms made simple. cms made possible:
www.redstarz.net
uniqu3

Re: FormBUilder textarea table can't valign top

Post by uniqu3 »

First: why are you using tables for the form??
Second: you are using .contactform class in your css for input, textarea, labels etc. this has no effect on your form since you assigned .formbuilderform to your table and there is no .contactform class in your form.
User avatar
tern
Forum Members
Forum Members
Posts: 65
Joined: Tue Oct 16, 2007 1:00 pm

Re: FormBUilder textarea table can't valign top

Post by tern »

Thanks for helping  :D

I'm using table so that it can be align neat.

I'm not using .contactform, in my table class is like this:


How can i make it valign top? Where should i start?



2) Why my "Send" button, when mouseover, the cursor doesn't change to clickable?
thank you cms made simple. cms made possible:
www.redstarz.net
uniqu3

Re: FormBUilder textarea table can't valign top

Post by uniqu3 »

You are right about the template but you are able to assign class in the FormBuilder settings.
And this is the first issue with your form, none of styles is being assigned to the form.
I took a look at your template and CSS with firebug, where you are able to edit css on the fly and saw that you actually assigned background color and border in your css, which is ignored in your actual form.

So as first you should edit your css or class in the FormBuilder so you can style this thing  :)
I'm using table so that it can be align neat.
Still no need for tables you can align and style all of this with your CSS.
For now you would need extra styling for your tables like

Code: Select all

.formbuilderform td {
 vertical-align:top;}
I didn't test it but it should be something like this. You can also add extra class for each div/td in your FormBuilder under options so if you want for example "Subject" to be styled differently you can edit your form in FormBuilder by clicking this field and adding new class under options.

This would than be for example:

Code: Select all

.formbuilderform td.yourclassforsubject {
 background:#f00;}
User avatar
tern
Forum Members
Forum Members
Posts: 65
Joined: Tue Oct 16, 2007 1:00 pm

Re: FormBUilder textarea table can't valign top

Post by tern »

Thank you very much uniqu3  :D. I hv made it by changing the css.



...but my submit button cursor, still not change.
thank you cms made simple. cms made possible:
www.redstarz.net
uniqu3

Re: FormBUilder textarea table can't valign top

Post by uniqu3 »

Your submit button has class cms_submit and fbsubmit
Now you could do following:

input.cms_submit {
cursor: pointer;}
User avatar
tern
Forum Members
Forum Members
Posts: 65
Joined: Tue Oct 16, 2007 1:00 pm

Re: FormBUilder textarea table can't valign top

Post by tern »

thank you so much saviour. Now i can show my website to my friends.  ;)
thank you cms made simple. cms made possible:
www.redstarz.net
Post Reply

Return to “Layout and Design (CSS & HTML)”