Change Color of Post Title on Post Page

  • Unknown's avatar

    I have a dark background and my post title is dark grey. I would like to change it to orange or white. Can anyone help with the ccs?

    It looks great on all other pages, except when you are on the post’s direct page.

    example:
    http://ianmadsen.wordpress.com/2013/02/18/rough-go-in-sydney/

    Also anyone know how to change my twitter widget text color?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    I have a dark background and my post title is dark grey. I would like to change it to orange or white. Can anyone help with the ccs?

    To change the color of post titles to white on the Oxygen theme, add this to your Appearance → Custom Design → CSS editor:

    .single .entry-title {
    	color: #fff;
    }

    To also change the color of the entry meta, add this too:

    .entry-meta,
    .single .entry-meta a {
    	color: #fff;
    }
  • Unknown's avatar

    Also anyone know how to change my twitter widget text color?

    You probably want to change the color of the links, since the text is already white. This rule will update all of the links in the sidebar widgets to white:

    .widget ul li a {
    	color: #fff;
    }
  • The topic ‘Change Color of Post Title on Post Page’ is closed to new replies.