Widely theme

  • Unknown's avatar

    1. The Widely front page automatically displays 4 posts in a row then 3 posts in a second row. Can I remove the second row via CSS editing?

    2. is it possible to remove the ‘Category-Archive’ prefix on the h1.entry-title element when it is displaying a page category? I can’t use display:none as this removes all h1.entry-titles throughout the site. I can’t seem to target a single element because all the h1.entry-headers have been given class selectors. I wonder if there is another way around this?

    Thanks for your help!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar
    .home.page .front-page-grid .hentry:nth-of-type(5), .home.page .front-page-grid .hentry:nth-of-type(6), .home.page .front-page-grid .hentry:nth-of-type(7) {
        display: none;
    }
    
    .page-header h1 {
        font-size: 0;
    }
    .page-header h1 span {
        font-size: 16px !important;
    }
  • Unknown's avatar

    Wow! That’s nice and it works too! Thank you :)

  • Unknown's avatar

    You’re welcome.
    (In the other thread I gave you a different solution, because it wasn’t clear to me that you only wanted to remove the ‘Category-Archive’ prefix: I thought you wanted to remove the whole heading.)

  • The topic ‘Widely theme’ is closed to new replies.