Reply To: Adding additional header on the top of the webpage

Home Forums Support Adding additional header on the top of the webpage Reply To: Adding additional header on the top of the webpage

Home Forums Support Adding additional header on the top of the webpage Reply To: Adding additional header on the top of the webpage

#84029
Tom
Lead Developer
Lead Developer

I would personally use GP Hooks.

Something like this in the “Above Header” hook:

<div class="above-header-bar">
      <div class="grid-container grid-parent">
            Top bar content in here
      </div>
</div>

Then some CSS:

.above-header-bar {
      padding: 10px;
      background: #7CC68D;
      color: #FFF;
      text-align: right;
}