Support Forum

For all questions related to themes and plugins!

Enter search keyword e.g. "footer color".

  • Registration is Required

    Registration is required to post questions to support forum. ThemeForest buyers also need to obtain Purchase code to be able to post on forum.

    Please read here how to obtain Purchase code.

#2502
Robert Kavgić
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

Attachments:
You must be logged in to view attached files.