Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Jan Pencik

    (@janpencik)

    Hi @maximilianschneider,

    Thanks for reaching out.

    Currently, there is no option to limit the width of the event feed directly from the event feed’s settings, but we will consider adding this feature to the next release because I believe it can be helpful for more users.

    If you need this immediately, you can achieve that by adding a few lines of CSS to your website. Navigate to AppearanceCustomize, then click on the Additional CSS section (last item in the list). Paste this code in the editor and click on Publish.

    .event-feed-for-eventbrite-app {
        width: 600px;
        max-width: 100%;
    }

    If you want the event feed to be centered, add this code instead:

    .event-feed-for-eventbrite-app {
        width: 600px;
        max-width: 100%;
        margin: 0 auto!important;
    }

    Also, be sure to change the number of pixels to your desired width.

    If you published more than one event feed and want to target a specific one, you can use class .event-feed-for-eventbrite-app-id-[feed_id] instead. You can read more about that in our documentation.

    I hope this helps! 🙂

    Thread Starter maximilianschneider

    (@maximilianschneider)

    Hi Jan,

    Thanks for the fast response. That did the trick!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Limiting width of the feed’ is closed to new replies.