bcboomerangs: <user name=oraclegreen> (sc: literally better than all your faves)
Because Boomerangs ([personal profile] bcboomerangs) wrote in [community profile] style_system2017-04-12 11:34 am
Entry tags:

Navigation Links in Gold Leaf

I currently have Elegant Notebook for Gold Leaf - and I'm trying to get rid of the "Network" link in my navigation links. I currently have a gap there because I removed the text, but I don't like that open space.

Any help?

UPDATE: This has been fixed. Thank you all for your help!
fueschgast: Darcy watching a CRT TV that shows Pietro at Wanda's door. (Default)

[personal profile] fueschgast 2017-04-12 06:17 pm (UTC)(link)
Maybe there's a more elegant way, but I'd do it by hiding the 4th list item.

.module-list-item + .module-list-item + .module-list-item + .module-list-item {
display: none;
}

.module-list-item + .module-list-item + .module-list-item + .module-list-item + .module-list-item {
display: inline;
}
poulpette: cropped picture of a blue ringed octopus (Misc - blue rings)

[personal profile] poulpette 2017-04-12 10:26 pm (UTC)(link)
.module-navlinks .module-list-item:nth-child(4) {display: none;} should do the trick.
Edited (Don't want to target ALL the 4th module-list-items, just the one in module-navlinks) 2017-04-12 22:29 (UTC)
lysanatt: (Default)

[personal profile] lysanatt 2017-04-12 06:26 pm (UTC)(link)
Oh, that's a pretty layout!

If the container that contains the Network link has both padding and margins set to 0, maybe check that margins and padding are set to 0 in the two containers adjacent to it - and change to negative margins until they are where you need them if that's the case. It's been a long time since I played with CSS, so it might not work, but that's where I'd start.

And the above works too. :D
Edited 2017-04-12 18:27 (UTC)