Page 1 of 1

FormBUilder textarea table can't valign top

Posted: Thu Jul 08, 2010 9:02 am
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

Re: FormBUilder textarea table can't valign top

Posted: Thu Jul 08, 2010 9:24 am
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.

Re: FormBUilder textarea table can't valign top

Posted: Thu Jul 08, 2010 12:37 pm
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?

Re: FormBUilder textarea table can't valign top

Posted: Thu Jul 08, 2010 12:53 pm
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;}

Re: FormBUilder textarea table can't valign top

Posted: Thu Jul 08, 2010 1:12 pm
by tern
Thank you very much uniqu3  :D. I hv made it by changing the css.



...but my submit button cursor, still not change.

Re: FormBUilder textarea table can't valign top

Posted: Thu Jul 08, 2010 1:24 pm
by uniqu3
Your submit button has class cms_submit and fbsubmit
Now you could do following:

input.cms_submit {
cursor: pointer;}

Re: FormBUilder textarea table can't valign top

Posted: Thu Jul 08, 2010 1:29 pm
by tern
thank you so much saviour. Now i can show my website to my friends.  ;)