How To Change Link List Font Style ...

Mar 05, 2013 14:52

Could someone tell me how to change the style/size etc of the font in my links list [without affecting the font style elsewhere in the CSS]?

CSS

/*paper moon ( Read more... )

sidebar, stylesheet, misc

Leave a comment

Comments 7

fueschgast March 5 2013, 16:05:37 UTC
#sidebar_linklist a

Reply

livialuna March 5 2013, 21:03:27 UTC
Sorry ... could you explain a little more? I'm afraid my CSS skills are limited.

Cheers.

Reply

fueschgast March 5 2013, 21:39:12 UTC
Oh, yes, sorry!

Well, it depends on what exactly you want to change. You can address only the links in the linklist with
#sidebar_linklist a {
font-style: italic;
}
and this example would make them italic. There are lots of possibilities, so I didn't put in more. If you know what you want the links to look like, you could tell me and I'll write the code.
If something's not working, there could be a bit of code overriding it. This can be fixed by putting !important in front of the line that's not working.

Reply

livialuna March 5 2013, 21:59:50 UTC
Worked like a charm. Thank you so much for your help. :D

Reply


Leave a comment

Up