I cannot seem to adjust the width of my input and select tags. I have enqueued the JS file properly. Nothing I do changes the format of the inputs or select tags and there is an unwanted line break in between each of my inputs. Here is what I am working with.
for (let i=0;i<eventsEntered && i<40;i++) {
formBlanks = formBlanks + "<input type = "text" class = "formField" id ="eventName${i}" placeholder="Event Name">
<select class = "raceType" id = "raceType${i}" style ="width: 30%;"> <option value="Road Race">Road Race</option> <option value="Criterium">Criterium</option> <option value="GC">GC</option></select>
<input type = "text" id = "place${i}" placeholder = "Place" style= "width: 150px;">
<input type = "text" id="fieldSize${i}" placeholder = "Field Size" style ="width: 100px;">
<p style="display:inline" id="points${i}"></p><br> ";
};//this loop creates a string variable that holds the html code for each individual row of the event forms
formBlanks = formBlanks + "<button onclick="eventCalc()">Calculate</button> <p id="catUp"></p>";
document.getElementById("jsOut").innerHTML = formBlanks;
formBlanks = "";
}