• Resolved essentiallyemma

    (@essentiallyemma)


    I am trying to get my calendar to sit right with my theme but I cannot figure out what is going on.

    As you can see there are read more buttons being added to the list events even with varying text colours, how do I remove those? I tried this code but it didn’t work:

    .tribe-events-read-more { display: none !important; }

    There is also this weird highlight effect happening on the upcoming and subscribe to calendar links. I think my theme is trying to style them as buttons, any idea how fix this?

    I am not super knowledgeable about CSS so any help would be really appreciated!

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @essentiallyemma

    Thank you for reaching out. Sorry you are having some trouble with styling. It looks like you are using the Clover theme by 17th avenue. When I looked here:

    https://17thavenuedesigns.com/shop/clover-wordpress-theme/

    I can also see that the same highlighting style is present on their website demo. This, combined with looking through their documentation indicates that the theme settings are what is causing your custom code not to work. The theme is over riding your code.

    I would advise contacting the 17th Avenue support team for help.
    https://support.17thavenuedesigns.com/

    Thread Starter essentiallyemma

    (@essentiallyemma)

    Hi,

    Thank you for your response.

    Unfortunately, my theme support are unable to help me because there is nothing wrong on the theme end, it is just the way the plugin is adopting the theme is weird.

    Is there any way to stop the event calendar from pulling from my theme? I just want it to look like the demo!

    Plugin Support Guga Alves

    (@gugaalves)

    Hi there,

    > Is there any way to stop the event calendar from pulling from my theme?
    That’s not exactly possible as the theme CSS style will load before any plugin, but you can try using custom CSS to override those rules only for the Events post type.

    Please try adding the following CSS snippet on wp-admin > Appearance > Customizer > Additional CSS section:

    .post-type-archive-tribe_events .more-link {
        display: none!important;
    }
    .post-type-archive-tribe_events button:not(.menu-toggle) {
        background-color: inherit!important;
    }
    Thread Starter essentiallyemma

    (@essentiallyemma)

    Ah! Thank you so so much that did the trick! I really appreciate it, thank you.

    Plugin Support Abz

    (@abzlevelup)

    Hi @essentiallyemma, that’s awesome! Good to know that my colleague Guga was able to help you out, and you’re very much welcome!

    If you have some time to review, here — that would be amazing.

    Have a great day!
    Best,
    Abz

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Read more button and colours’ is closed to new replies.