• Resolved mvanoeffel

    (@mvanoeffel)


    I’m trying to make the title always show on the homepage, even when there is a featured image added to the blog post. Is there an easy way of doing this?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Anders Norén

    (@anlino)

    Hi @mvanoeffel,

    If you go Appearance > Customize > Extra CSS and enter the following, the titles will always show on top of the images:

    .post .post-overlay { opacity: 1; }
    .post.has-post-thumbnail .archive-post-header { bottom: 30px; }

    You can also adjust the opacity of the overlay background by adding the following and modifying the 0.75 value (0.00 = fully transparent, 1.00 = fully opaque).

    .has-post-thumbnail .post-overlay { background: rgba( 0, 0, 0, 0.75 ); }

    — Anders

    Theme Author Anders Norén

    (@anlino)

    Hi again @mvanoeffel,

    I get this feature request often enough for Hitchcock that I figured it’s worthwhile to just add it to the theme. The lastest version, which should be live within a couple of hours, has a Appearance > Customizer tab called Theme Options, and in there you’ll find a checkbox for “Show Preview Titles”. If you check that and save, the post titles will always be visible in previews.

    You can still use the second code snippet in my previous post to adjust the background opacity of the preview overlay, though.

    — Anders

    Thread Starter mvanoeffel

    (@mvanoeffel)

    Thanks a lot for the help Anders! I’ve already added the code snippet, but looking forward to the integration!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Always show title on grid view’ is closed to new replies.