![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
![[community profile]](https://www.dreamwidth.org/img/silk/identity/community.png)
I noticed that the latest code push somewhat messed up my navigation links by reducing the space between each link.
Is it possible to increase the spacing? It looks very clogged right now and it's messing with my sense of balance. I can play with the values to see what looks best, but I have no idea what the code should be.
Is it possible to increase the spacing? It looks very clogged right now and it's messing with my sense of balance. I can play with the values to see what looks best, but I have no idea what the code should be.
no subject
Date: 2019-05-15 02:21 am (UTC)#header li {
padding: 0 !important;
}
.recent, .archive, .read, network, .tags, .memories, .userinfo {
padding: 10px;
}
#header .tags {
display: none;
}
#header .network {
display: none;
}
And now it should be:
#header .module-navlinks li {
padding: 10px;
}
.list-item-tags, .list-item-network {
display: none;
}
(I didn't intend to remove the old css classes on the header link items when I added classes to the list items, but apparently I did, and we have pushed a fix for that yet, so people can use their old code)
no subject
Date: 2019-05-15 01:23 pm (UTC)no subject
Date: 2019-05-15 05:50 pm (UTC)oh - add !important after the display:none. There's another display:inline that's overriding it so they're still being shown (and padded).
no subject
Date: 2019-05-15 07:49 pm (UTC)no subject
Date: 2019-05-15 07:58 pm (UTC)Awesome, glad to help!