be more selective about which elements not to display

we only want to skip the redundant User-Documentation and Programmer-Documentation captions
This commit is contained in:
Axel Kohlmeyer
2020-09-21 22:41:19 -04:00
parent 54aacc47ea
commit f186eb7005

View File

@ -27,7 +27,11 @@ hr {
margin-bottom: 12px !important;
}
.section h2 {
#user-documentation.section h2 {
display: none;
}
#programmer-documentation.section h2 {
display: none;
}