Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #1164370

    JvP
    Participant

    Thanks 🙂

    #1164568

    Joao
    Moderator

    You are welcome,

    Let us know if we can help with anything else.

    Joao

    #1196256

    alisonglass
    Participant

    this was a very helpful thread!

    #1196336

    Joao
    Moderator

    Glad to see it helped you 🙂

    Joao

    #1316702

    biscardicreative
    Participant

    I’m trying to do a similar feature to this topic. For me it’s removing the Featured Image from all the Category Pages.

    On my site I have Recipes > Seafood and the seafood page is being generated automatically from the recipes-seafood category. But like the other issues on this thread, my 300px Featured Image is being blown up to full screen. I’d like to either have the images remain 300px or simply be removed so there is a nice list of recipes for the end user.

    see http://whereswalter.tv and go to Good Eats > Recipes or Places to Eat and choose any submenu item. The resulting page will give you oversized images.

    Thanks!

    #1317040

    Paul R
    Moderator

    Hi,

    You can try adding this under Custom > Edit Global CSS in the Customizer.

    
    .archive.category .entry-featured {
        max-width: 300px;
        margin-right: auto;    
        margin-left: auto;
    }

    Hope that helps.

    #1317272

    biscardicreative
    Participant

    Thanks so much! That did work, but then I ultimately changed it to display:none because the list is cleaner that way. I may end up just building pages eventually so they call lay out in a grid. But this is exactly what I was looking for. Thanks so much!

    #1318047

    Rad
    Moderator

    You’re so much welcome!