Note

Remember to check the tags, before posting a question, to see whether it's been answered already.

Quick Links

August 2009

S M T W T F S
      1
2345678
9101112131415
16171819202122
23242526272829
3031     

Layout By

branchandroot

Syndicate

RSS Atom
Powered by InsaneJournal

Sticky

Remember to check the tags, before posting a question, to see whether it's been answered already.

Posts Tagged: 'links'

Jul. 29th, 2008


[info]branchandroot
[info]s2completestyle

[info]branchandroot
[info]s2completestyle

How to remove journal links in banner


[info]branchandroot
[info]s2completestyle
All themes have journal links (Recent Entries, Friends, User Info, etc.) available in a sidebar module. Most also place them in the banner area. If you want to remove the version in the banner this is how you do it.

Place the following into your Custom CSS:

#nav-above, #nav-below { display: none; }

If you also want to have the links in a sidebar module instead, scroll up the Custom Options page a bit to where you select sidebar modules and make sure that one of the dropdowns is set to "Nav Links".
Tags: ,

Jul. 15th, 2008


[info]branchandroot
[info]s2completestyle

[info]branchandroot
[info]s2completestyle

How to change link colors


[info]branchandroot
[info]s2completestyle
How much work this will be depends on the theme. With some themes, it will be enough to add the following to your custom css:

a { color: #000099; }
a:visited { color: #009900; }

inserting the color code for whatever color you want your links to be. If you are unfamiliar with hexidecimal color codes, try using a colorpicker to choose them.

Some themes will have different link colors specific to the header or sidebar or main column, however, and those will have to be included separately. If the above code does not do what you want it, the next step is to try:

#beta a,
#gamma a { color: #000099; }
#beta a:visited,
#gamma a:visited { color: #009900; }

for the sidebar, or

#alpha a { color: #000099; }
#alpha a:visited { color: #009900; }

for the main column, or

.entry a { color: #000099; }
.entry a:visited { color: #009900; }

for entries specifically. In fact, if you want to change the link colors only on your entries, and don't mind the sidebar or header colors, your best option is to use the .entry version first thing.

If that still doesn't make your link colors change, you will need to take a look at the style sheet for that theme and track down the places where #anything a { color: #whatever; } is defined. The #anything string will need to be copied exactly into your custom css, with the color changed to the one you want.