-
I want a slightly modified version of the (what I want is remove "Recent Posts" |
Beta Was this translation helpful? Give feedback.
Answered by
iBug
May 14, 2024
Replies: 1 comment
-
If you just want to hide some elements, consider using custom classes on that page, and hide those elements with custom CSS. E.g. ---
layout: home
classes:
- hide-recent-posts
--- .hide-recent-posts .archive__subtitle {
display: none;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
svaderia
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you just want to hide some elements, consider using custom classes on that page, and hide those elements with custom CSS.
E.g.