• Resolved hogg66

    (@hogg66)


    My List, Month and Day views all show up as if there are 3 columns across and only the first column has my events info. IOW all my event info is only showing up in 1/3 of my page on the left side of the page. I have checked for plugin errors and CSS issues and neither of these are the cause. Any ideas how to fix this?

    The page I need help with: [log in to see the link]

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

    (@geoffbel)

    Hey @hogg66

    Thank you for reaching out!

    This is caused by the CSS of your theme (business pro – line 4254).
    Basically, you need a new CSS rule to override it.

    .blog .entry, .archive .entry, .page-template-page_blog .entry {
        width: 31.62393%;
        margin-left: 2.5641%;
    }

    Try adding this rule

    .archive .tribe-events .tribe-events-calendar-list .entry {
        width: 100% !important;
    }

    Cheers,
    Geoff

    Thread Starter hogg66

    (@hogg66)

    Awesome, it worked! So I also added it for the MONTH view:

    .archive .tribe-events .tribe-events-calendar-month .entry {
    width: 100% !important;
    }

    Thanks Geoff!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Events Displaying as 1/3 Column’ is closed to new replies.