• kathyelliott

    (@kathyelliott)


    I can not get my page titles to change from color:#ffb400 to color:#0e702d. This is the only information I can find that may have to do with changing it. I am new at wordpress. So I need some help! Under the header.php template here is what I have found:

    /* Header styling options */
    <?php $header_styling = of_get_option(‘header_color’);
    if($header_styling != ”) {
    echo ‘#header {background-color:’.$header_styling.’}’;
    }
    ?>

Viewing 4 replies - 1 through 4 (of 4 total)
  • esmi

    (@esmi)

    Try looking in Appearance -> Header

    Michael

    (@alchymyth)

    most formatting adaptations would be made in style.css of your theme, unless there are specific options in the dashboard.

    try to use a tool such as Firebug https://getfirebug.com/ to identify the involved css selectors of your page title; then adjust the corresponding style in style.css of your theme, or add a new one.

    if you post a link to your site, someone might have a look, although helping with fundamental formatting issues is not within the main scope of this WordPress forum.

    Thread Starter kathyelliott

    (@kathyelliott)

    Ok thanks! Here is the URL to my site: https://myphysiciannm.co/

    I also need help getting the drop down menu to appear. I have sub-pages under services. and also to see if there is any way to change the header image to be different on each page. Here is my style.css

    [2589 lines of CSS moderated as per the Forum Rules. The maximum number of lines of that you can post in these forums is ten lines. Please just post a link to your site.]

    Michael

    (@alchymyth)

    the color is set in /css/normalize.css:

    h1{
      font-size:30px;
      line-height:1.2em;
      margin:0 0 .85em;
      color:#ffb400;
      font-family: 'Open Sans', sans-serif;
    }

    (easily to find out with the mentioned tool Firebug)

    you can change/overwrite it by adding this to style.css:

    .hentry h1 { color: #0e702d; }

    there is a dropdown menu below ‘services’ – do you need anything else?

    if there is no build-in options, try searching the plugins for header change per page…

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Page Title color will not change’ is closed to new replies.