Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vertically centering the search bar and button in a header

I'm trying to center the search bar and button in the header so that it will alaways vertically centered with the SVG logo but can't figure it out by myself. Would appreciate the help. Thanks in advance!

header {
  text-align: right;
  background-color: #333333;
  border-bottom-width: 1px;
}

.clear {
  display: inline;
}

.LogoHeader {
  position: relative;
  top: 0px;
  right: 0px;
  height: 25%;
  width: 25%;
  border-spacing: 20px;
  vertical-align: -5px;
  margin-left: 47px;
}

.SearchForm {
  text-align: right;
  display: inline;
  padding: 0px 0px
}

.SearchField {
  border: none;
  margin: 0;
  display: inline-block;
  line-height: 20px;
}

.SearchButton {
  display: inline;
  background-color: deeppink;
  border-style: none;
  line-height: 20px;
}
<header>
  <a href="#website" class="clear" style=" margin-left: 47px;"><img class="LogoHeader" src="C:\Users\David\Desktop\WebDevelopmentTest\images\NotWalla\logo.svg" alt="My news website"></a>
  <span>
                <form class="SearchForm";>
                    <input class="SearchField" type="text" name="q" value autocomplete="off">
                    <input class="SearchButton" type="submit" value="Search">
                </form>
        </span>
</header>
like image 466
dawed1999 Avatar asked Oct 28 '25 08:10

dawed1999


2 Answers

to vertically centralize elements you can use on parents elements

display:flex;     align-items:center;

E.g:

<div style="display:flex;     align-items:center;"> 
<div> 1 </div>
<div> 2 </div>
<div> 3 </div>
</div>

and if you want to center horizontally elements you can add

justify-content: center;

Working example https://jsfiddle.net/2fe2yr87/

like image 183
Robert Avatar answered Oct 30 '25 23:10

Robert


Change vertical-align: -5px; to vertical-align: middle;.

like image 33
ata Avatar answered Oct 30 '25 23:10

ata



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!