Skip to content

How to remove the lines on the footer of the homepage? #224

Answered by h-enk
CLannadZSY asked this question in Support
Discussion options

You must be logged in to vote

See ./assets/scss/layouts/_footer.scss:

.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 .footer something like:

.home .footer {
  border-top: 0;
}

Note, the html body element contains (a) page type specific class(es)

Replies: 1 comment 1 reply

Comment options

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

Answer selected by CLannadZSY
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants