-
This module is great for landing pages, but we should have an option to hide the bottom margin. It looks good in light themes, but on dark themes the bottom margin is an ugly dark grey bar with no use, unless you use a transparent image. @razonyang could you introduce an option to remove that dark grey bar between the header banner and the footer? Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
razonyang
Mar 24, 2025
Replies: 1 comment 1 reply
-
It's not an universal case, so it won't happen in this module, but there is a custom solution, to do this, put the following custom SCSS into your site. [data-bs-theme="dark"] {
[data-layout="landing"] {
.hb-header,
.hb-main {
margin-bottom: 0 !important;
}
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
LITUATUI
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's not an universal case, so it won't happen in this module, but there is a custom solution, to do this, put the following custom SCSS into your site.