runpunkrun: Pride flag based on Gilbert Baker's 1978 rainbow flag with hot pink, red, orange, yellow, sage, turquoise, blue, and purple stripes. (Default)
Punk ([personal profile] runpunkrun) wrote in [community profile] style_system2013-01-09 10:49 pm
Entry tags:

get rid of "manage links" link [solved]

Hi, I'm using Modish, and I want to get rid of the "Manage Links" link that shows up at the bottom of the links module because it takes up room. I'd been doing okay with
.manage-link{display:none!important}
Of course, that hides all the other manage links like "Manage Tags," which I was fine with!, except now with the new journal styled icon pages, it hides "Manage Icons" too, which I kind of need. Is there a better way to get rid of the "Manage Links" link without wiping out all the manage-links?
momijizukamori: Green icon with white text - 'I do believe in phosphorylation! I do!' with a string of DNA basepairs on the bottom (Default)

[personal profile] momijizukamori 2013-01-10 08:14 am (UTC)(link)
.module .manage-link{display:none !important;} should just kill the ones in the sidebar, and leave the ones in the big icon area alone.

Or .module-typelist .manage-link{display:none !important;} should do it for just the link module :)
momijizukamori: Grey tabby cat with paws on keyboard and mouse. The text reads 'code cat is on the job', lolcats-style (CODE CAT)

[personal profile] momijizukamori 2013-01-10 11:50 pm (UTC)(link)
You're welcome! And yeah, it takes some getting used to - basically it's like nested boxes. .module selects anything within a box with that class, and then .manage-link selects any manage-link that's inside one of those boxes. All our modules have specific names as well as the generic module class.