Change color of links in event card (Grid layout)

Add this code to the Custom CSS field on the Style tab of your Event Calendar widget’s settings:

.eapp-events-calendar-grid-item-info a {
color: red!important;
}

How do you do this for Masonry layout?

1 Like

Hey there, @Joel_Greaves and welcome to the Community :waving_hand:

You just should replace grid with masonry in the code :

.eapp-events-calendar-masonry-item-info a {
color: red!important;
}

Try it out and let me know if it worked :slightly_smiling_face:

1 Like