Blog Header doesn´t show title, neither metadata

Hi,

My blogs are not showing the title nor the metadata like they use to.
Please check in the link below:
https://maleoptimization.com/2019/01/17/siete-maneras-de-elevar-tus-niveles-de-testosterona-de-forma-natural/

You´ll see also in blogs like the one below, that the head image for the blog doesn´t get cropped to fit the screen:
https://maleoptimization.com/2019/01/20/pilares-fundamentales-del-male-enhancement-primera-parte-ejercicios-kegel/

How can I solve this?
Thanks,
Carlos

Hi Carlos,

Thanks for reaching out.

You have this custom CSS,

.entry-header {
    display: none;
}

It’s added on Theme Options > CSS, please remove it.

As for the second issue, the image only responds if it’s bigger than it container (scale down). Else, it will remain on its original size. The uploaded image is just 720px, stretching it to fit it to the screen will make it distorted or blurry. Please upload bigger image or please add this to Theme Options > CSS

.entry-featured img {
width: 100% !important;
}

Thanks!

Thanks for providing the CSS lines.
One last thing, I´m trying to change the font color of the content in my right sidebar, but I can´t find the option to do it. I guess it would have to be changed with CSS.

Which would be the CSS line to change the fonts to white in the sidebar? Also the lines as the content is separated by dividers and boxes.

Thanks,
Carlos

Hello Carlos,

Thanks for updating the thread. :slight_smile:

You can add following CSS under X > Theme Options > CSS:

.x-sidebar .widget a, .x-sidebar .widget p, .x-sidebar .h-widget {
    color: #fff !important;
}

Here are some related links for further reading:

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.