• I am using the latest WP (3.0.1) with the Twenty-Ten theme, which is great for novice like me. However — I want to change the color of the font in all the sidebar widgets, and can’t figure out where in the stylesheet.css to do this. I have found a line to change the color of the titles, but not the color of the items (for instance, a title would be “Archives” and the item — my definition – would be “August 2010” that is the sub-category to the title). Can anyone point me in the right direction?

Viewing 6 replies - 1 through 6 (of 6 total)
  • I am having the same problem. I want to edit the look of my sidebar but I can’t find it in my stylesheet! I too am using the latest WP and Twenty-Ten theme.

    If you figure it out, please do let me know!

    Thread Starter cubefarm

    (@cubefarm)

    will do…though no luck so far. I’ll keep you posted!

    I am trying it too..

    in style.css of the theme (towards the end) find:

    .widget-area a:link,
    .widget-area a:visited {
    	text-decoration: none;
    }
    .widget-area a:active,
    .widget-area a:hover {
    	text-decoration: underline;
    }

    add the colors there;
    be aware that these styles are for all widgets, including the footer sidgets.

    is you want/need to distinguish the codes, use:
    (you need to add these styles new to style.css)

    #primary.widget-area a:link,
    #primary.widget-area a:visited {
    	text-decoration: none;
    }
    #primary.widget-area a:active,
    #primary.widget-area a:hover {
    	text-decoration: underline;
    }

    same for #secondary, #first, #second, #third, and #fourth resp.
    (#first to #fourth are the footer widgets css ids, left to right)

    to style the whole of the footer widgets links, add:
    #footer .widget-area {...}
    (as above, with a space)

    Eyal

    (@riotdezigner)

    i think alchymyth deserve a thank you for answering that. i had the same problem and it works great.

    Alwyn Botha

    (@123milliseconds)

    COOL

    If cubefarm mark this as resolved other people can see this as a working solution too…

    Please mark thread as resolved so that

    – others with similar problem can see it as resolved and will read this thread for help if they have similar problem

    – people providing help see it as resolved and will not waste time reading this post.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Twenty-Ten change color to sidebar?’ is closed to new replies.