• I have just started using the grunge-wall theme by 00yea and I like it, but I want to make some minor changes. The font size and color for the h2 is gray, which is invisible on black background, and it is too small.

    I THINK this is the code for the h2

    .post h2 a, .post h3 a, .post h2, .post h3{
    font: bold 30px Arial, sans-serif;
    color: #959595;
    color: #FF0000;
    text-decoration: none;
    }

    it almost appears like there are no values for the h2. Am I right? What should I add?

    Also, view my blog at https://www.playwithdeath.com (it is purely fiction if anyone actually reads any old posts!) and look at the color selector in the top right corner. I would like to remove that without changing the distance my h1 is from the top.

    Thanks, anyone out there that can help me. I appreciate it.

Viewing 2 replies - 1 through 2 (of 2 total)
  • No, h2 has values.

    When you are using the “red” theme, your .post h2 is red (an example is your title “Read from the beginning…”). Then, there is an .entry h2 (an example is “Here are the old posts, starting with the first one.”) The color for .entry h2 is #cccccc, or gray, and the font-size is specified as “small”. It appears this might be hard-coded in your theme, instead of in your style.css. You may need to look for style information in your index.php, page.php, & single.php. Once you find the #cccccc (or just #ccc), you can change the color to whatever hex value you want. To increase the font-size, you can change “small” to any one of the following:

    medium
    large
    x-large
    xx-large

    To remove your color selector, you could consider finding #colours in your style.css, and adding a line:

    display: none;

    to that block.

    To figure out how to do this on your own, investigate using Firebug, an add-on for Firefox.

    Thread Starter playwithdeath

    (@playwithdeath)

    Thanks alot for getting back to me. Sorry it took me till Christmas to reply.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change my h2 font size and color “PLEASE HELP”’ is closed to new replies.