Private: Home › Forums › HTML Templates › Mixed Modern and Professional HTML Template › Modify Center Header › Reply To: Modify Center Header
March 13, 2015 at 10:15 pm
#2502
Participant
Open your .html template file and find the following code under the <header>
tag:
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="logo">
<a href="index.html">
<img alt="Insurance Technologies" src="img/logo.png">
</a>
</div>
</div>
</div>
</div>
Modify the upper code so it looks like following (only add the hidden-sm and hidden-xs class to the existing container one):
<div class="container hidden-sm hidden-xs">
<div class="row">
<div class="col-md-12">
<div class="logo">
<a href="index.html">
<img alt="Insurance Technologies" src="img/logo.png">
</a>
</div>
</div>
</div>
</div>
Now, add the following code ABOVE the <ul id="quick-links">
code (the same code as the upper one, we just changed the classes of container):
<div class="container hidden-md hidden-lg">
<div class="row">
<div class="col-md-12">
<div class="logo">
<a href="index.html">
<img alt="Insurance Technologies" src="img/logo.png">
</a>
</div>
</div>
</div>
</div>
I have attached a screenshot of how your html structure should look like once you apply those modifications.
Robert