Okay
  Public Ticket #1175588
Calendar Plugin Displays incorrectly
Closed

Comments

  • Neil started the conversation

    I recently installed the Simple Calendar plugin (found here https://simplecalendar.io/ ) on my site: http://bransonalpinemountaincoaster.com/operating-hours-schedule/  I love the functionality, but with the Salient theme it does not display completely correctly in the monthly view. It should be displaying the day of the month and events of each day as a single box, which is what it does when I switch to the default wordpress theme, but for the Salient Theme it displays two boxes--the day of the month in the top half and the event in the bottom half. I contacted the author of the plugin and they said it shouldn't be displaying this way and to contact the theme author. I have updated to the latest version of salient, 8.0.15 and the problem still persists. Any help would be appreciated, thanks!

  •  9,042
    Tahir replied

    Hey Again,

    Seems like a css issue . Could you provide a screenshot of how its supposed to look so that i may write up css for it. 

    Thanks 


    ThemeNectar Support Team 

  • Neil replied

    Thanks for the quick response! Attached is a screenshot of what the calendar looks like in the Default WP 2016 theme, note how each date is a single box containing the event for that date. 

  • Neil replied

    Also I noticed that the "Today" highlight only covers part of the box in the Salient theme (see attached) and covers the full box in the 2016 theme. 

  •  9,042
    Tahir replied

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    .fc-ltr .fc-basic-view .fc-day-number {
        border-bottom: none !important;
    }
    .fc-unthemed .fc-today {
        background: #fcf8e3 !important;
        
    }
    .fc-row .fc-content-skeleton tbody td{
        background: rgba(218, 15, 15, 0) !important;
        padding: 0px !important;
    }

    Thanks


    ThemeNectar Support Team 

  • Neil replied

    Exactly what I needed, thank you so much!