the code is fantastic for adding the buttons to the calendar. The only issue is it is turning every link on my page, including the entire nav menu into purple buttons. How can I avoid that?
2 Likes
Hi there, @user17330 and welcome to the Community ![]()
Please let me check it with the devs. I’ll get back to you tomorrow ![]()
1 Like
Please try to use this code instead and let me know if it helped ![]()
.global-styles,
.eapp-events-calendar-events-calendar-component a,
.eapp-events-calendar-modal-modal a {
display: inline-block;
font-size: 12px;
font-weight: bold;
color: white;
background-color: purple !important;
padding: 10px 20px;
border: 0px solid purple;
border-radius: 20px;
text-align: center;
text-decoration: none;
cursor: pointer;
text-wrap: auto;
overflow-wrap: anywhere;
}
.global-styles,
.eapp-events-calendar-events-calendar-component a:hover,
.eapp-events-calendar-events-calendar-component a:focus,
.eapp-events-calendar-modal-modal a:hover,
.eapp-events-calendar-modal-modal a:focus {
color: white !important;
}
2 Likes
