Viewing 5 replies - 1 through 5 (of 5 total)
  • Ah yes, I see what you mean!

    Try adding this CSS to your child theme’s style.css file and that should increase the width of the content in all cases:

    .tribe-events-list .tribe-events-event-image+div.tribe-events-content {
      width: 100%;
    }
    Thread Starter Andrew Leonard

    (@andrewleonard)

    Yes, that worked for the text
    The featured image is still “truncated”. I am not so sure this matters so much, perhaps you thought it should not take up so much space in a “list”
    What do you think?
    Thank you for your help

    Plugin Contributor Andras Guseo

    (@aguseo)

    Hi Andrew,

    If you want to make the image full width as well, then add this:

    .tribe-events-list .tribe-events-event-image {
        width: 100%;
    }

    Cheers

    Thread Starter Andrew Leonard

    (@andrewleonard)

    Thanks for your help
    That did not quite work as expected
    The quality is very poor
    see here

    Brook

    (@brook-tribe)

    Ahh yes. That would be because the CSS is embiggening a little thumbnail.

    Do you wish to even show the featured image in this view, or only on the single events page? You could hide the featured image by swaping width:100%; for display:none;

    If you wish to see the image and would like to see it full width, only high quality, you will need to create a theme override. Have a look at the Themer’s Guide. It walks you through modifying the PHP templates so you change the look, wording, and order of things. Specifically you will want to modify list/single-event.php. Around line 64 you will see it calls tribe_event_featured_image( null, ‘medium’ ). Change ‘medium’ to ‘full’ and you will get the high resolution version.

    Did that do the trick?

    Cheers!
    – Brook

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Formatting problem with Featured image’ is closed to new replies.