Week View with H2 and no scolling

Home Forums Calendar Products Events Calendar PRO Week View with H2 and no scolling

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #997489
    Dirk
    Participant

    Hello, my first problem with week view is I want to show the page title h2
    <h2 class=”tribe-events-page-title”>Veranstaltungen für die Woche vom August 24, 2015</h2>. This is currently hidden

    Second problem: I want to remove the scroll bar to show all events of the day without scrolling.

    Third problem: I want to remove the line for all-day events (Ganztägig).

    Thanks for your help.

    #997740
    Brook
    Participant

    Howdy Dirk,

    I could definitely help you with at least some of those.

    I want to show the page title h2
    <h2 class=”tribe-events-page-title”>Veranstaltungen für die Woche vom August 24, 2015</h2>. This is currently hidden

    The hidden title is a customization your theme has made. You just have to undo it either by deleting the title hiding CSS rule from your theme, or adding a CSS rule to anyone of your theme’s CSS files like this:

    body .tribe-events-page-title {
    display: block;
    }

    Second problem: I want to remove the scroll bar to show all events of the day without scrolling.

    That’s totally possible. I can see how that would work better, especially on mobile. You will need to do a theme override by following our Themer’s Guide. Once you’ve familiarized yourself with that, override this file: /events-calendar-pro/src/views/pro/week/loop-grid-hourly.php Remove tribe-scroller from this line (line 18):

    <div class="tribe-week-grid-wrapper tribe-scroller">

    Like this:

    <div class="tribe-week-grid-wrapper">

    Then you’d need to add some CSS to any of your theme’s CSS files that allows the full height to be visible with no scroll bar:

    body .tribe-week-grid-wrapper {
    overflow : visible;
    height : auto;
    }

    Third problem: I want to remove the line for all-day events (Ganztägig).

    You can definitely hide lines, again by modifying the CSS. It looks another customization your theme has made has caused a vertical line to go through ä in Ganztägig. Is that the line you wish to hide? If not, which one?

    Cheers!

    – Brook

     

    #1002079
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Week View with H2 and no scolling’ is closed to new replies.