user4260940
user4260940

Reputation:

Dropdown not working in Contact Form 7

I have added a contact form using the plugin contact form 7 with drop-down area.

http://www.edsys.in/contact/ 1

The trial software field has the dropdown.But it s not displayin properly.

T searched over net and applied the following css:

select {
    background: transparent;
    width: 268px;
    padding: 5px;
    font-size: 16px;
    line-height: 1;
    border: 0;
    border-radius: 0;
    height: 34px;
    -webkit-appearance: none;
} 

...but it didnt work.

I need something like this: http://www.zebraprintandcopy.com/upload-file/

When I checked the source code, I couldn't find any helpful styles.

Thanks in advance!!

edit:

This is the code I have added for the dropdown in the form:

<p>Trial Software Of : <br />[select* dropdown multiple "test1" "test2" "test3" "test4"]</p>

Upvotes: 1

Views: 8480

Answers (4)

Anand Shah
Anand Shah

Reputation: 14913

Your code should look like the following with "multiple" removed.

<p>Trial Software Of : <br />[select* dropdown "test1" "test2" "test3" "test4"]</p>

Upvotes: 0

vicente
vicente

Reputation: 2643

I think you have to uncheck the option "Allow multiple answers" when you create the field. Or you can remove the "multiple" option from the tag.

Upvotes: 1

rnevius
rnevius

Reputation: 27112

You need to remove the multiple option from the form, in the Admin.

Right now, you likely have something like:

[select your-select multiple "test1" "test2" "test3" "test4"]

Read the docs for full details.

Upvotes: 0

Bhumi Shah
Bhumi Shah

Reputation: 9476

Remove multiple from your select box code.

Upvotes: 1

Related Questions