This is mine. What am I doing wrong? It needs it so the top and bottom of the 'GO' button line up perfect with the input box.
Code: Select all
<style>
.logobox_search
{
float: left;
width: 295px;
margin-left: 56px;
margin-top: 40px;
font-size: 25px;
color: #ffffff;
text-align: center;
}
.logobox_search input
{
border: 2px solid #153878;
font-size: 23px;
text-align: center;
padding: 8px;
margin-bottom: 10px;
}
.logobox_search input[type="submit"]
{
background-color: #153878;
color: #ffffff;
font-size: 21px;
text-align: center;
padding: 8px;
margin-bottom: 10px;
}
</style>
<div class='logobox_search' >
<form method='GET' action='/index.php'>
<input type='text' name='search' placeholder='Search Jobs'><input type='submit' value='Go'>
</form>
<i class="fa fa-phone fa-lg"></i> 00000 000 000
</div>