• Hi!
    I was wondering if it was possible to get rid of the text below my picutres on both my homepage and recipe pages. I would like to just have the picture and the name of the recipe. Is it a pro option only?
    Thanks again!
    Elena

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi Elena, thanks for another great question! ??

    You can remove the meta (date, category, author, etc.) under Appearance > Customize > Blog Feed > Show Meta. To remove the excerpt, you can add this snippet of CSS in Appearance > Customize > Additional CSS:

    .blog-feed .entry-summary, .frontpage-featured-posts .entry-summary {
        display: none;
    }

    If you have any trouble or need anything else, let us know!

    Thread Starter afoodiesbliss

    (@afoodiesbliss)

    Hi Steven,
    thanks again for the quick response. Unfortunately the css code isn’t working. I’m not sure why. I copied and pasted it in the additional css section. Is there a spacing issue in the code?
    Elena

    Thread Starter afoodiesbliss

    (@afoodiesbliss)

    Hi again,
    So i just realized the css code work on my mobile website, but not the desktop. Is the code missing something?
    Thank you!!
    Elena

    Good observation! It looks like a bit of existing CSS in there lost a closing brace.
    If you replace this CSS:

    @media (max-width: 767px) {
        .header-row-1-toggle {
            display: none;
        }
        .header-row-1 {
            max-height: unset;
        }

    with this:

    @media (max-width: 767px) {
        .header-row-1-toggle {
            display: none;
        }
        .header-row-1 {
            max-height: unset;
        }
    }

    it should correct the issue. Let us know if not!

    Thread Starter afoodiesbliss

    (@afoodiesbliss)

    It worked! Thank you!
    Elena

    Happy to hear that! ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Home Page and Recipes’ is closed to new replies.