| Post |
|
Guest
| Jessie 8:15 am September 16, 2008
| |
|
|
Please replace the ??? with your data!
[desc]: _Why does the form have an extra box on the right? Please see the form box located on my home page, or contact page.
How do I remove that?
Also, if I have too many words in a muti-select box field, it doesn't show all of the words (past about 15 characters) and is cut off by the short width of the box. Is there a way to elongate the width of the box?
Thanks!
Jessie
|
|
|
Admin
| Oliver Munich, Germany posts 6231 10:05 am September 16, 2008
| |
|
|
you need to add a:
.cform fieldset { width:auto!important; }
to make up for the destructive WP theme CSS.
via:
.cform select { … }
you can adjust font size, width etc.
If you do make it wider, you might want to make the form wider as well:
.cform { … }
|
|
|
|
|
Guest
| Jessie 5:35 am September 17, 2008
| |
|
|
Thanks Oliver.
Although, you're talking to a person that only knows HTML, unfortunutely.
Would you mind offering step-by-step instructions?
Are you talking about editing the stylesheet.css?
If I'm way off…like I said, steps would be much appreciated :)
Jessie
|
|
|
Admin
| Oliver Munich, Germany posts 6231 9:22 am September 17, 2008
| |
|
|
I thought I was pretty specific. :-)
- goto styling->CSS editor
- scroll to the bottom and add
.cform fieldset { width:auto!important; } .cform select { font-family:arial; font-size:11px; width:315px; } .cform input.sendbutton { width:315px; margin:5px 0 20px 80px; } .cform label { font-size:12px; width:70px;} .cform label span { width:70px;}
That's about as much space as you can make with the given theme (image limitations).
If that's not enought you have two options:
- pick a different theme
- have the field label move to the top and thus add 50px to the field width
|
|
|
|
|
Guest
| Jessie 5:48 pm September 18, 2008
| |
|
|
that worked! thanks Oliver.
this plugin rocks.
|
|