• Resolved lilralph

    (@lilralph)


    Could not find out how and where to change the color for the event title. I tried changing single event title color but that did not work. We are looking to change from white to black to be able to see on the page

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

Viewing 6 replies - 1 through 6 (of 6 total)
  • I’m definitely not an expert, but does it work if you add something like this to your CSS? I think the line will change the color of the title for all of your events on the single event pages.

    div.title_holder > div > div > div > h1 > span {
       color: black;
    }
    Plugin Support Abz

    (@abzlevelup)

    Hi @bpcake, out of the box, there’s no built-in option/setting for this one. However, I’d recommend doing a Custom CSS. Go to Appearances → Customize → Additional CSS and insert this Custom CSS here:

    .single-tribe_events .title_subtitle_holder * {
      color: #000 !important;
    }

    It should work after applying this snippet. Make sure to clear the cache after. Moreover, you can check our Themer’s Guide to learn more about implementing CSS customization → https://theeventscalendar.com/knowledgebase/knowledgebase-category/customizing/.

    See if that works on your end. Let me know how it goes.

    Best,
    Abz

    Thread Starter lilralph

    (@lilralph)

    I tried both codes and the dont not change the color, thanks but any other suggestions
    https://torosbaseballusa.com/event/toros-game-day-september-17-18/

    this is the content that is white
    USM/JCJC TOURNAMENT SEPTEMBER 17-18

    The suggestion from @abzlevelup should work. You’re missing the initial period. You currently have:

    single-tribe_events .title_subtitle_holder * {
      color: #000 !important;
    }

    instead of:

    .single-tribe_events .title_subtitle_holder * {
      color: #000 !important;
    }
    Plugin Support Abz

    (@abzlevelup)

    Hi @lilralph, I could see that the title is now black, on your website. Good to know it worked on your end and thanks @bpcake for checking and suggesting the missing identifier (period) for CSS classes.

    Let me know if you need more assistance.

    Best,
    Abz

    @lilralph

    Hey there! This thread has been inactive for a while so we’re going to go ahead and mark it Resolved. Please feel free to open a new thread if any other questions come up and we’d be happy to help. ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Event Title Color’ is closed to new replies.