• Hi,
    I’m trying to figure out how to change the size of the featured image, not on the post itself, but on the main page or search pages (basically anywhere that has the list of posts in a grid)

    More specifically, I’m trying to change the size of it to the size of a movie poster (currently my images are 1000 × 1500 pixels)

    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator Kathryn Presner

    (@zoonini)

    Normally you’d need to create a child theme to override the setup function that sets those sizes in function cubic_setup()

    But since Cubic is already a child theme of Boardwalk you won’t be able to do that. You could either fork Cubic or try a grandchild theme plugin:
    https://docs.appthemes.com/tutorials/creating-grandchild-themes/

    Thread Starter RevolutionDude

    (@revolutiondude)

    So, there’s no way of doing it through CSS?

    Hmm.. how would I do it with Boardwalk? I like some things about Cubic, but I wouldn’t mind simply using Boardwalk if I can change those sizes.

    Moderator Kathryn Presner

    (@zoonini)

    In Cubic you could try something a bit hacky with CSS like this, adjusting the percentage as needed:

    .archive .hentry, .blog .hentry, .search-results .hentry {
         padding-bottom: 20% !important;
         width: 20% !important;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change the size of the featured image on front and search pages’ is closed to new replies.