Blending out and blending in
How to NOT show (or show) certain things in your lj style.
It is possible to render certain aspects of your layout invisible via css stylesheet.Peer default, I set the following aspects of the bloggish layout to display:none, meaning they are simply not being displayed although they do exist in the raw code.
- The title of your lj that usually displays your name.
h1#banner-header {
display:none;
}
- the subtitle of your livejournal
#banner-description {
display:none;
}
- Powered by livejournal
.module-powered { display:none; } {
display:none;
}
Basically, you can render every and any aspect of your lj invisible. Doesn't make any sense though, for then noone can see it, However, it could make sense to render somee other parts invisible should you choose to do so.
- The userpic in the sidebar= .module-photo
- The calendat in the sidebar= .module-calendar
- The link-list in the sidebar= .module-typelist
- The feeds in the sidebar= .module-syndicate
If you want to render one of those invisible place for example
.module-syndicate {
display:none;}
These are just examples.
Also, if you erase the display:none in the tags where I styled them that way, the header and subtitle will appear. I just didn't like them there, I prefer putting them in the graphic.18 comments | Leave a comment