Skip to content
Discussion options

You must be logged in to vote

For anyone in the future looking to add a simple banner, here's the methodology that finally got me a solution!
Figuring out the CSS options needed to get everything to render properly was absolutely the most difficult part as someone with little-to-no CSS/HTML experience before this. Plenty of tries where the banner would get swallowed by the header.

Thanks again for pointing me in the right direction, @squidfunk!

In your HTML Overrides...

{% extends "base.html" %}

{% block header %}
<!-- Custom Banner -->
<div class="banner">
    <p style="color:COLOR_HERE; display:inline;">TEXT GOES HERE!</p>
</div>

<!-- Original Header -->
{% include "partials/header.html" %}
{% endblock %}

In a cus…

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
1 reply
@Rwarcards762
Comment options

Comment options

You must be logged in to vote
0 replies
Answer selected by Rwarcards762
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants