Home Forums Support Top Bar Reply To: Top Bar

#224123
Tom
Lead Developer
Lead Developer

The “Get a free trial now” message?

Something like that could be done quite easily in GP Hooks – no need for a Customizer option:

<div class="top-bar">
    <div class="inside-top-bar">
        Get a free trial now!
    </div>
</div>

Then the CSS:

.top-bar {
    background: red;
    color: white;
    font-size: 20px;
    text-align: center;
}