• Can the color of each project page’s ‘Title’ be altered? It’s a dark grey and I really need to change it to suit my theme. Any Headings which are entered in the text boxes are also grey, can their colors be changed too?

    Alternatively can it simply be turned off globally? I was hoping it would be the following code but it doesn’t work.
    .single-project .entry-title {
    display: none;
    }

    Any help greatly appreciated.

    • This topic was modified 7 years, 1 month ago by gizmo1990.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello there,

    Use this to set custom color:

    
    .single-projects .entry-title { 
      color: #fff000;
    } 
    

    To hide it, use this one:

    
    .single-projects .entry-title { 
      display: none;  
    }
    

    Regards,
    Kharis

    Thread Starter gizmo1990

    (@gizmo1990)

    Excellent, thank you Kharis! Is there a code to change any ‘heading’ assigned text too? They are grey also.

    Hello there,

    Did you mean the heading in the single projects? If so, you’ll add this code:

    
    .single-projects h1,
    .single-projects h2,
    .single-projects h3,
    .single-projects h4,
    .single-projects h5,
    .single-projects h6 {
      color: #fff000;
    }
    

    Regards,
    Kharis

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Alter color of Project Titles or turn them off?’ is closed to new replies.