css selector for hiding nav items in wiki wasn't specific enough. oops
This commit is contained in:
parent
76197c079c
commit
52ff9eb063
1 changed files with 7 additions and 7 deletions
|
@ -9,13 +9,13 @@
|
||||||
{% compress css %}
|
{% compress css %}
|
||||||
<link rel="stylesheet" type="text/x-scss" href="{% static "scss/site.scss" %}">
|
<link rel="stylesheet" type="text/x-scss" href="{% static "scss/site.scss" %}">
|
||||||
|
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
div.navbar ul.nav.navbar-nav li:nth-child(1), /* about */
|
div.navbar ul.nav.navbar-nav > li:nth-child(1), /* about */
|
||||||
div.navbar ul.nav.navbar-nav li:nth-child(4), /* sponsors */
|
div.navbar ul.nav.navbar-nav > li:nth-child(4), /* sponsors */
|
||||||
div.navbar ul.nav.navbar-nav li:nth-child(5) /* news */ {
|
div.navbar ul.nav.navbar-nav > li:nth-child(5) /* news */ {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
{% endcompress %}
|
{% endcompress %}
|
||||||
{% endaddtoblock %}
|
{% endaddtoblock %}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue