07-09-2015, 10:52 PM
07-12-2015, 05:18 PM
Code:
body { max-width: 680px; margin: auto }
What do you want from this?
07-13-2015, 07:26 AM
This css code makes the body of the page have 680px and stay (hopefully) in the middle of the page. =P
07-17-2015, 10:50 PM
try this :
CSS Code :
input[type=text] {
padding: 0;
height: 30px;
position: middle;
left: 0;
outline: none;
border: 1px solid #cdcdcd;
border-color: rgba(0,0,0,.15);
background-color: white;
font-size: 16px;
}
.advancedSearchTextbox {
width: 680px;
height: 400px;
margin-right: -4px;
}
Then place the HTML code where you want the box :
<input type="text" class="advancedSearchTextBox" />
dont have time to test it, but should work,
and if it dosnt then you have something to work with :)
CSS Code :
input[type=text] {
padding: 0;
height: 30px;
position: middle;
left: 0;
outline: none;
border: 1px solid #cdcdcd;
border-color: rgba(0,0,0,.15);
background-color: white;
font-size: 16px;
}
.advancedSearchTextbox {
width: 680px;
height: 400px;
margin-right: -4px;
}
Then place the HTML code where you want the box :
<input type="text" class="advancedSearchTextBox" />
dont have time to test it, but should work,
and if it dosnt then you have something to work with :)