2.0.11 Makes Dropdown Nav on Calendar Nearly Invisble

Home Forums Calendar Products Events Calendar PRO 2.0.11 Makes Dropdown Nav on Calendar Nearly Invisble

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #32930
    KIRSTEN
    Member

    It also seems to have affected my event list view as well…nothing displays

    #32934
    Jonah
    Participant

    Hi Kirsten,

    I can see the dropdown nav on the calendar just fine. It’s a little small font size wise but not bad. You can easily increase the font size by targetting it with CSS like so:

    .tribe-events-month-nav {
    font-size: 16px;
    }

    You can add that to your theme’s style.css file.

    On the list, it looks like your theme is applying CSS that is setting the height of clearfix class items to 0. I would suggest finding the .clearfix declaration in your theme’s style.css file and changing it to this instead:

    .clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
    }
    * html .clearfix { zoom: 1; } /* IE6 */
    *:first-child+html .clearfix { zoom: 1; } /* IE7 */

    I hope that helps!

    – Jonah

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘2.0.11 Makes Dropdown Nav on Calendar Nearly Invisble’ is closed to new replies.