Show or hide all the days of the week on the heatmap calendar plugin - CSS snippet for Obsidian #101
dresgonzalez13
started this conversation in
Show and tell
Replies: 1 comment
-
Hey Richards!
I tried to see your comment on Github but it was gone, did it work for you?
…On Wed, Mar 6, 2024 at 5:19 PM maifather ***@***.***> wrote:
Hi thank you so much for creating this. I'm very new to Obsidian.
I already created a css file in snippets folder and turned the snippet on
but nothing change.
image.png (view on web)
<https://github.com/Richardsl/heatmap-calendar-obsidian/assets/139601249/c6a0b928-715f-4131-aac4-3df49b6c881b>
Can you please help me?
—
Reply to this email directly, view it on GitHub
<#101 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AZOXDI7PTV57Z5BWUBA5EZDYW6I5PAVCNFSM6AAAAABAEIN4NKVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DMOJZG4YTA>
.
You are receiving this because you authored the thread.Message ID:
<Richardsl/heatmap-calendar-obsidian/repo-discussions/101/comments/8699710
@github.com>
--
Best Regards,
Andrés González
Montreal, QC. Canada
Email: ***@***.***
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Show all days of the week
If you want to see all the days of the week on the left side of the graph, use this CSS snippet below.
.heatmap-calendar-days li:nth-child(odd) { visibility: visible !important; }
Hide all days of the week
If you want to hide all the days of the week on the left side of the graph, use this CSS snippet below.
.heatmap-calendar-days { display: none; }
Beta Was this translation helpful? Give feedback.
All reactions