1
I work with the Tray platform and I’m developing a custom filter for my Site, but I set the filter to be viewed on the computer, but now that I went to make the settings for him to be responsive and so when viewing on mobile do not occur distortions, I’m not getting Follow the HTML I’m using
<div>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style disabled>
}
.overflow {
height: 600px;
}
#button1 {
width: 120px;
position: absolute;
top: 90px;
left: 880px;
background-color: #e00505;
font-size: 12px;
}
h4 {
font-size: 18px;
}
select {
border-top-color: black;
border-top-style: ridge;
border-top-width: 1px;
border-right-color: black;
border-right-style: ridge;
border-right-width: 1px;
border-bottom-color: black;
border-bottom-style: ridge;
border-bottom-width: 1px;
border-left-color: black;
border-left-style: ridge;
border-left-width: 1px;
border-image-source: initial;
border-image-slice: initial;
border-image-width: initial;
border-image-outset: initial;
border-image-repeat: initial;
}
label {
border-top-color: black;
border-top-style: ridge;
border-top-width: 0px;
border-right-color: black;
border-right-style: ridge;
border-right-width: 0px;
border-bottom-color: black;
border-bottom-style: ridge;
border-bottom-width: 0px;
border-left-color: black;
border-left-style: ridge;
border-left-width: 0px;
border-image-source: initial;
border-image-slice: initial;
border-image-width: initial;
border-image-outset: initial;
border-image-repeat: initial;
}
</style>
<script>
$( function() {
$( "#speed" ).selectmenu();
$( "#files" ).selectmenu();
$( "#number" )
.selectmenu()
.selectmenu( "menuWidget" )
.addClass( "overflow" );
$( "#salutation" ).selectmenu(#);
} );
</script>
<div>
<h4 style="text-align: -webkit-center;">Personalize o seu Kit de Segurança</h4>
<form action="#" id: form>
<fieldset style= "border: 6px" >
<label for="speed" style="color: red" ><b> Tipo do seu Kit </b>
<select name="speed" id="speed" style="
padding-right: 10px;">
<option Desable>Selecione</option>
<option>Residencial</option>
<option>Comercial</option>
</select>
<b>Qualidade de Seu Kit</b>
<select name="files" id="files" style="
padding-right: 9px;
padding-left: 2px;
">
<option desable> Selecione </option>
<option value="HD">HD</option>
<option value="Full HD">Full HD</option>
<option value="Analógica">Analógica</option>
</select>
<b> Quantidade de Câmeras </b>
<select name="number" id="number" style="
padding-right: 10px;
">
<option desable> Selecione </option>
<option>1 Câmera</option>
<option>2 Câmeras</option>
<option>3 Câmeras</option>
<option>4 Câmeras</option>
<option>5 Câmeras</option>
<option>6 Câmeras</option>
<option>7 Câmeras</option>
<option>8 Câmeras</option>
<option>9 Câmeras</option>
<option>10 Câmeras</option>
<option>11 Câmeras</option>
<option>12 Câmeras</option>
<option>13 Câmeras</option>
<option>14 Câmeras</option>
<option>15 Câmeras</option>
<option>16 Câmeras</option>
</select>
<b> Selecione a Marca </b>
<select name="salutation" id="salutation">
<option desable selected>Selecione</option>
<option>Intelbras</option>
<option>Hikvision</option>
<option>Outras</option>
</select>
<button class="kd-filter-button" id= "button1">Ver resultados</button>
</label>
</fieldset>
</form>
</div>
Follow the print as this getting on mobile, and the button is located in the corner of the page outside the view
As it is getting on the phone, put a print there. And you are putting 600px in the class . overflow??
– hugocsl
@hugocsl I used a model ready, and already had this value, and as I am customizing I have not changed it yet, but I do not understand much . overflow, what would it be? Thanks
– Vinicius Castilho