title color and featured image

Support Area Forums Forward title color and featured image

Viewing 6 posts - 1 through 6 (of 6 total)
URL to the page in question: http://epimelosepixeirein.iea.org.gr
  • Author
    Posts
  • #27070
    faos1
    Participant

    Hi Bill, I try to solve but I keep coming with more questions.

    Q1 How can I remove the featured image displayed on the top of the page/article?
    I use featured images only for the thump image they produce for the front end of the site.
    (I use featured post widget in order to add recent posts to the home page).

    Q 2 how can I change the main title color (right now is default black) that appears above each page and post?
    I tried in the appearance -> customize menu – > Content – > heading color but changes only the headings H1, H2, H3 etc and not the title that is highlighted on the image attached.

    Thanks for your total support with this new theme

    #27078
    Bill Robbins
    Moderator

    Questions are always welcome. Here’s how to hide the featured image from your posts:

    1. Go to your theme options page and choose the Advanced tab.
    2. Scroll down to the Custom CSS box and add this:
      
      .entry-header .featured-image,
      .entry-header .fit-video {
      	display: none;
      }
      
    3. Update your settings.

    The post titles are links so they’ll inherit whatever color is set for your links in the site. If you need to set them separately you can do so this way:

    1. Go to your theme options page and choose the Advanced tab.
    2. Scroll down to the Custom CSS box and add this:
      
      .page-title a,
      .page-title a:visited {
      	color: #000000;
      }
      
      .page-title a:hover {
      	color: #cccccc;
      }
      

      The top style there will be the normal color and the bottom style is for the hover color.

    3. Update your settings.

    Have a great day,
    Bill

    #27107
    faos1
    Participant

    Q1 about featured image done and solved

    Q2 added the code but nothing changed.
    Bill, I also noted that these letters (post or page titles in black) do not appear to me as links if you hover nothing changes, even with the default theme values.

    see http://epimelosepixeirein.iea.org.gr/programma

    #27108
    Bill Robbins
    Moderator

    Sorry about that I misunderstood the place you were speaking of. The code above is for blog post title colors in the blog/archive view. Those are links. To change a single post or page title use this:

    
    h1.page-title {
    	color: #fff;
    	border-bottom: 1px solid #fff;
    }
    

    You can place it in the Custom CSS in your Customizer. Feel free to change the color of the text and/or border to fit your needs. If you want to remove the border, just change it to border-bottom: 0; and that will take it out.

    Take care,
    Bill

    #27109
    faos1
    Participant

    Now it worked :-), I will think of the border too, a nice touch .

    You are so great Bill, sometimes I wonder that you set the standards of customer service experience !!

    #27118
    Bill Robbins
    Moderator

    I’m glad to have helped you out. Have a great evening:)

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘title color and featured image’ is closed to new replies.