Home › Forums › Calendar Products › Events Calendar PRO › Week View with H2 and no scolling
- This topic has 2 replies, 3 voices, and was last updated 10 years, 7 months ago by
Support Droid.
-
AuthorPosts
-
August 20, 2015 at 12:40 am #997489
Dirk
ParticipantHello, 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 hiddenSecond 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.
August 20, 2015 at 4:21 pm #997740Brook
ParticipantHowdy 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 hiddenThe 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
September 4, 2015 at 7:05 am #1002079Support Droid
KeymasterThis 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. -
AuthorPosts
- The topic ‘Week View with H2 and no scolling’ is closed to new replies.
