title color and featured image
URL to the page in question:
http://epimelosepixeirein.iea.org.gr
-
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
Questions are always welcome. Here’s how to hide the featured image from your posts:
- Go to your theme options page and choose the Advanced tab.
- Scroll down to the Custom CSS box and add this:
.entry-header .featured-image,
.entry-header .fit-video {
display: none;
}
- 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:
- Go to your theme options page and choose the Advanced tab.
- 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.
- Update your settings.
Have a great day,
Bill
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
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
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 !!
I’m glad to have helped you out. Have a great evening:)
- The topic ‘title color and featured image’ is closed to new replies.