Archived topic
Make the Top Bar clickable
3 replies · Started by Matt on July 27, 2018
Viewing posts 1–4 of 4
Hiya,
I was wondering whether there was a neat way of making the top bar clickable, like the top bar at https://tattly.com/?
Many thanks,
Matt
Hi there,
we could use some javascript or you could just use a Custom HTML Widget containing your link with a specific class e.g:
<a href="your_url" class="clickable-top-bar">My Clickable top bar</a>
and then add this CSS:
.inside-top-bar {
padding: 0;
}
.top-bar .inside-top-bar .widget {
display: block;
}
.clickable-top-bar {
display: block;
padding: 8px 0;
text-align: center;
}
Ugh! So easy! :o) Thanks David, very much appreciated!
Haha - yes :) Glad to be of help.
This archived topic is closed to new replies.