Change Fontsize of Event Title in the list view widget (and in foto view)

Home Forums Calendar Products Events Calendar PRO Change Fontsize of Event Title in the list view widget (and in foto view)

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1209652
    Frank
    Participant

    Hi,

    I am using the events calendar in avada. I need to reduce the font size for the titles of the events listed in the widget. I tried all different solutions proposed in the forum, e.g. adding “.tribe-mini-calendar-event .tribe-events-title {font-size: 20px;}” in the custom CSS. But without success.

    See “Bistro…” in the attached screenshot.

    Any hint?

    #1209801
    Geoff
    Member

    Hi Frank,

    You might need to play with this a little more bit more, but adding this to your theme’s style.css file or using the Advanced CSS editor in the WordPress Customizer (Appearance > Customize) might do the trick:

    /* Sets widget event title size */
    tribe-mini-calendar-event h2 {
    font-size: 25px !important /* or whatever size you'd like */
    }
    
    /* Sets Photo View event title size */
    #tribe-events h2.entry-title {
    font-size: 25px !important /* or whatever size you'd like */
    }

    Here is a screenshot of how that looks in Photo View when I tested it on your site. Like I said, though, you may wind up using different classnames than what I provided and need to play with it a little more to get it just right.

    Cheers!
    Geoff

    #1209988
    Frank
    Participant

    Hi Geoff,

    Thank you for your input. Sadly, this did not cure the problem.
    I tried both, without success.

    #1210991
    Geoff
    Member

    Hi Frank,

    Will you please try this instead? Minor difference, but hopefully it helps:

    /* Sets widget event title size */
    .tribe-mini-calendar-event h2 {
    font-size: 25px !important;
    }
    
    /* Sets Photo View event title size */
    #tribe-events h2.entry-title {
    font-size: 25px !important;
    }

    Like I said before, you may need to play with this a bit on your own to make it work with your theme.

    Cheers!
    Geoff

    #1212738
    Frank
    Participant

    Yes!!
    That works. Thank you Geoff

    #1212775
    Geoff
    Member

    My pleasure! I’ll go ahead and close this thread but let us know if any other questions come up and we’d be happy to help. 🙂

    Cheers!
    Geoff

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Change Fontsize of Event Title in the list view widget (and in foto view)’ is closed to new replies.