dramajan

Member

Forum Replies Created

  • In reply to: Info for Child Theme functions.php file

    #32362

    Got it! Thanks.

    In reply to: How to change font for h1, h2….h6 ?

    #32340

    Yes, I realized that when I reread the wp forum post. As they say, I know just enough to be dangerous. Sigh.

    Thanks again for your help.

    In reply to: How to change font for h1, h2….h6 ?

    #32338

    The “important” code worked beautifully! h2 font family now displays as Georgia.

    .entry-content h2 { font-family: georgia !important; }

    Thanks for your help, Luco! Problem solved.

    FYI, that nasty piece of code you advised me to remove was inserted in order to remove PAGE titles, but maintain POST titles. I found it in a wp forum. Here’s the link:

    http://wordpress.org/support/topic/unable-to-locate-pagephp-file-to-remove-page-titles-in-graphene-theme?replies=6

    Per your advice, I have now removed it. Replaced it with this:

    .page .post-title, .page .post-title a, .page .post-title a:visited {

    display: none;

    }

    which does the same thing. PAGE titles are gone. POST titles remain.

    Thank you!

    In reply to: How to change font for h1, h2….h6 ?

    #32335

    FALSE ALARM.

    I found an extra “}” in my code before the change for the borders. I have now effectively removed the grey borders. (That was just a test situation anyway). So child theme does seem to be functioning.

    Now I’m back to trying to figure out how to change the font for the subheads (h1, h2, h3, etc).

    I’ve already checked the css – there is not an extra “}” anywhere!

    Thanks.

    In reply to: How to change font for h1, h2….h6 ?

    #32334

    I have begun to suspect that my child theme is not functioning the way it should. I closed my browser and relaunched it, cleared the cache, and then tried to make a change to my child theme css (in Editor) that I’ve made effectively in the past.

    IN ORDER TO TEST MY CHILD THEME, I inserted the following code into css for my graphene child theme, in order to get rid of the grey borders around images:

    .entry-content img{

    border:0px solid #e3e3e3;

    margin:5px;

    }

    This had no effect whatsoever. The grey borders are still there.

    I’m guessing the problem has something to do with my child theme, although I’ve no idea what.

    To create my child theme, I had made a style.css file with the following code, and uploaded that into a directory called “GrapheneChild” in my wp-content/themes directory.

    /*

    Theme Name: Graphene Child

    Description: Child theme for the Graphene theme

    Author: Jan Probst

    Template: graphene

    Version: 1.8.1

    */

    @import url(“../graphene/style.css”);

    /* Your modification goes here */

    ANY SUGGESTIONS?

    I should probably post this as its own topic since the subject seems to have changed.

    In reply to: How to change font for h1, h2….h6 ?

    #32333

    Hi Luko.

    I had already put the code noted in my last reply into css for my child theme. It had no effect on the h1,h2,h3, etc. typeface. The font still displayed the same (not Georgia).

    Nothing I have done has changed the typeface for those subheads from the font drop-down menu.

    I’m stumped.

    In reply to: How to change font for h1, h2….h6 ?

    #32331

    Okay, thanks.

    Would this be the correct way to designate the font-family? This had no effect on the h1,h2, etc. typeface either.

    .entry-content h1,

    .entry-content h2,

    .entry-content h3,

    .entry-content h4,

    .entry-content h5,

    .entry-content h6 {

    font-family: Georgia;

    }

    In reply to: How to change font for h1, h2….h6 ?

    #32329

    I put the following code into my child theme css. It had no effect. Tried different fonts in the code. No effect. Do I have the code right?

    .entry-content h1,
    .entry-content h2,
    .entry-content h3,
    .entry-content h4,
    .entry-content h5,
    .entry-content h6 {
    font: tahoma;
    }

    In reply to: How to change font for h1, h2….h6 ?

    #32327

    Hi Kenneth.

    No, not post titles. They’re fine.

    I’m wanting to change the font/typeface (or font family) used for h1, h2, etc., for self-created subtitles on my pages.

    Thanks!

    In reply to: Graphene Child Theme problems

    #32302

    Yep, that was it. Used a different text editor and created a style.css file. Uploaded it to wp-content/themes/GrapheneChild

    Bingo! I have a child theme to activate!

    Now I’ve got that nasty background back and can’t remember how I got rid of it!

Viewing 10 posts - 1 through 10 (of 11 total)

  • 1
  • 2