Where can we see the website in question?
The website is in local development.
I’m using this in CF7:
[select menu-647 multiple "Entry" "Entry" "Entry" "Entry" "Entry" "Entry" "Entry" "Entry"]
You can aslo replicate it in the TryOut Editor here: https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_select
With the content:
<!DOCTYPE html>
<html>
<body>
<h1>The select element</h1>
<p>The select element is used to create a drop-down list.</p>
<form action="/action_page.php">
<label for="cars">Choose a car:</label>
<select multiple="multiple" name="cars" id="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
</select>
<br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
You can see the output box is just showing 4 items in this case.
If we can add <select size=”10″ class=””…….
Then we can adjust the size.
You can use the size
option in a select
form-tag like this:
[select menu-647 multiple size:10 "Entry" "Entry" "Entry" "Entry" "Entry" "Entry" "Entry" "Entry"]
Thanks. I’ll try that.
I looked in the documentation but could not find that info there.