YukiGasai / obsidian-google-calendar

Add Google Calendar inside Obsidian
https://yukigasai.github.io/obsidian-google-calendar/
GNU General Public License v3.0
359 stars 25 forks source link

Schedule view: Hide date elements #176

Closed machado-t closed 1 year ago

machado-t commented 1 year ago

I use this plugin to display the list of events for the day in the daily notes, with schedule view. For my use case, as it always displays only one day, the date elements ("Aug 25 Fri"), are quite redundant. Is it possible to hide those someway?

YukiGasai commented 1 year ago

Hi, you can add a custom CSS snippet in Obsidian with the following code:

.gcal-schedule-date-display {
  display:none !important;
}
machado-t commented 1 year ago

It works. Thanks