zycroft: (Default)
zycroft ([personal profile] zycroft) wrote in [community profile] getting_started2011-11-11 10:07 pm

Displaying Network/Tags/Memories

Is there a way to hide the links to the network/memories/tags pages on the top of my journal? They're features I love, but I don't want them displayed on my layout.

I'm using an imported layer/style in advanced customizations. It's for Flexible Squares and then I used the custom CSS option for most things (written by someone else for LJ). In the "Text" customization area, I only have options for recent entries, friend's page, profile, and archive. Anything I don't want to display, I just put in a space and that works, but I can't find anything for network, memories, or tags. Is there some CSS I can add to hide it? Or is it impossible to do because of the style I'm using or because it's something paid accounts can't opt out of?
liv: Stylised sheep with blue, purple, pink horizontal stripes, and teacup brand, dreams of Dreamwidth (sheeeep)

[personal profile] liv 2011-11-12 10:11 am (UTC)(link)
I think you can chage the titles to a space by adding the following lines to your layer:

set text_view_network = " ";
set text_view_memories = " ";
set text_view_tags = " ";


There's probably a way to do it with CSS as well, but I'm not good with converted versions of Flexible Squares. Somebody else might be able to help you better. My suggested code needs to be in your layer, not in the custom CSS.
matgb: Artwork of 19th century upper class anarchist, text: MatGB (Default)

[personal profile] matgb 2011-11-12 10:12 pm (UTC)(link)
There are two ways to do it, the first is as Liv suggests above and edit your S2 layer, but if that's all you want to do learning how to do it might be too much (it's what I'd do, I started hacking S2 for just such a little change).

The other way is through custom CSS-you've already removed the text to the archive links, but you can simply hide them from display completely.


.navheader {display:none}

should work