Hi @ba95472 ,
Thanks for reaching out, and I’m sorry to learn of the difficulties.
Changing the View Calendar link color can be accomplished with CSS. Kindly try appending the below CSS snippet to your theme’s additional CSS section (Appearance -> Customize -> Additional CSS) and see if that works for you.
.tribe-events-widget-events-list__view-more-link { color: purple !important; }
Feel free to let me know how you go or if you have further questions/concerns.
Thanks very much Tristan! Would like to have the hover CSS on that link as well the Subscribe to Calendar button on the Events page. Can you please share that? Thanks again!
Hi @ba95472, you can try something like ⬇️
.tribe-events-widget-events-list__view-more-link:hover {
color: purple !important;
}
You can replace the color of your choice. Let me know if that does the trick.
Best,
Abz
Thanks Abz, unfortunately that just does what Tristan’s code does – affects link color, but not the underline on hover.
Plugin Support
Darian
(@d0153)
HI @ba95472
You can try this one
.tribe-events-widget-events-list__view-more-link:hover {
border-bottom-color: purple !important;
}
Let me know how it goes.
That works! Thanks Darian – any CSS for the “Subscribe to calendar” button on the Events page?
-
This reply was modified 2 years, 11 months ago by
ba95472.
Hi @ba95472,
For the “Subscribe to Calendar” button you could use the following CSS,
.tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button {
background-color: green !important;
}
.tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover {
background-color: yellow !important;
}
So that you know, this CSS will change the background color of the subscription button when it is idle or being hovered. Additional button properties can be modified by further adjusting the CSS code.
That works! Thanks so much for all your help masoodak!
Plugin Support
Darian
(@d0153)
Hi @ba95472
Thanks for your confirmation and I’m glad that it is now working.
If you have some time to review, that would be amazing!
https://wordpress.org/support/plugin/the-events-calendar/reviews/
I’d be closing this thread, and please do not hesitate to bump a new thread on our way. This allows us to track topics/issues efficiently and follow the WordPress Forum Guidelines
Looks like I may have spoken too soon, sorry! On the events page, the button border and text still show purple. Other than that, works great.