How to remove the lines on the footer of the homepage? #224
Answered
by
h-enk
CLannadZSY
asked this question in
Support
-
I want to remove this style, what file do I need to modify? |
Beta Was this translation helpful? Give feedback.
Answered by
h-enk
Apr 8, 2021
Replies: 1 comment 1 reply
-
See .footer {
border-top: 1px solid $gray-200;
padding-top: 1.125rem;
padding-bottom: 1.125rem;
} If e.g. you do not want to show the line on the homepage, add after .home .footer {
border-top: 0;
} Note, the html |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
CLannadZSY
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See
./assets/scss/layouts/_footer.scss
:If e.g. you do not want to show the line on the homepage, add after
.footer
something like:Note, the html
body
element contains (a) page type specific class(es)