• Resolved lkbperry

    (@lkbperry)


    Hey everyone –

    I am running the Sela theme on my WordPress site (laurenperrystudio.com) and have it set so that my Home Page is static, and my blog posts go to my “Blog” page (see the Blog link on my main menu bar). Everything has been working swimmingly, but for some reason I can’t get my Blog Post Titles to show up on my blog page. I’m sure it’s simple CSS that I’m missing – but none of my troubleshooting thus far has worked.

    The blog titles show up on the sidebar under “Recent Posts” but not on the page body itself.

    Any ideas what I’m doing wrong? Thanks in advance!

Viewing 6 replies - 1 through 6 (of 6 total)
  • In your custom CSS, you have this rule:

    .entry-title {
        display: none;
    }

    I suppose you added that so that the titles wouldn’t appear on your static pages. However, that also hides the entry titles on your blog page.

    Just add this additional rule and your entry titles should once again appear on your blog page:

    .blog .entry-title {
       display: block;
    }

    Thread Starter lkbperry

    (@lkbperry)

    That fixed it! Thanks so much!

    Hi, I am having a similar problem. On my blog page the titles are not showing up. Here’s the code: `<?php

    //* Add Genesis grid loop
    //* remove_action( ‘genesis_loop’, ‘genesis_do_loop’ );
    //* add_action( ‘genesis_loop’, ‘eleven40_grid_loop_helper’ );
    function eleven40_grid_loop_helper() {

    if ( function_exists( ‘genesis_grid_loop’ ) ) {
    genesis_grid_loop( array(
    ‘features’ => 1,
    ‘feature_image_size’ => 0,
    ‘feature_image_class’ => ‘alignleft post-image’,
    ‘feature_content_limit’ => 0,
    ‘grid_image_size’ => ‘grid-featured’,
    ‘grid_image_class’ => ‘grid-featured’,
    ‘grid_content_limit’ => 250,
    ‘more’ => __( ‘[Continue reading]’, ‘eleven40’ ),
    ) );
    } else {
    genesis_standard_loop();
    }

    }

    //* Run the Genesis loop
    genesis();`

    The page url is https://www.hunterdonbiz.com/blog/. I would appreciate some help. Thanks!

    Hi, Pat:

    You should start a brand new thread so the original poster doesn’t get email notifications that are unrelated to his/her problem.

    I really can’t tell what the problem might be. Your site doesn’t look like the Eleven40 demo page, which does have post titles. Did you edit any of the theme files? Please respond by opening a new thread. Thanks.

    Ca you please help me with the same? I have the exact same issue as the first person on this thread with the same theme. I hid my page titles (somehow:) and now that’s affecting blog post titles as well. I tied the solution you offered for lkbperry, but didn’t work for me. Ideas? Tnank you!

    https://www.embodiedway.com

    Stefana, it’s because you are using a different mechanism to hide your post titles. The original poster used display: none and you are using visibility: hidden. Use this rule instead:

    .single-post .entry-title {
       visibility: visible;
    }

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Blog Post Titles not showing up on Blog Page’ is closed to new replies.