• Resolved hop3y

    (@hop3y)


    Hey,

    Tried this myself, but trying to change the colour of the “event title” on my homepage (sidebar) to #211850. I’m new to CSS, tried this but it doesn’t work. Can anyone help?

    .tribe-event-title { 
    		color: #211850;
    }

    Thanks
    Adam

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

Viewing 11 replies - 1 through 11 (of 11 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Huh there’s no “event title” text on your Homepage

    Thread Starter hop3y

    (@hop3y)

    Its the “Our Next Fixture” widget, sorry.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    In the “Additional CSS” section of the dashboard add this:

    
    .tribe-events-list-widget .mh-widget-title {
        color: pink;
    }
    

    https://codex.wordpress.org/CSS#Custom_CSS_in_WordPress

    Thread Starter hop3y

    (@hop3y)

    Take it I’d change the colour to #211850 – thanks for your help!

    Thread Starter hop3y

    (@hop3y)

    This changes the widget title –

    I would like to change the event title colour if possible, already changed the widget title.

    Thanks

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    What is the text you want to change colour?

    Thread Starter hop3y

    (@hop3y)

    Presentation & Kit Launch Night

    AGM

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Try:

    
    .tribe-events-list-widget .tribe-event-title,
    .tribe-events-list-widget .tribe-event-title a {
        color: pink;
    }
    
    Thread Starter hop3y

    (@hop3y)

    Excellent – worked thanks!

    Last request I promise!

    The footer widgets titles are the same colour as the background, so you can’t see them.

    How do I make them white with CSS?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    
    .mh-footer .mh-widget-title {
        color: white;
    }
    
    Thread Starter hop3y

    (@hop3y)

    Excellent – thanks

Viewing 11 replies - 1 through 11 (of 11 total)

The topic ‘CSS Help – Event title colour’ is closed to new replies.