• Resolved teamsemperfi

    (@teamsemperfi)


    I would like to change the font color of the days, how can I do that?

    Also, I need to remove the border around the opening hours. I think DIVI is responsible for this, but I can’t find a solution.

    Currently I’m using following short code:
    [open class=”hours-right outside-flush no-border”]

    • This topic was modified 2 years, 2 months ago by teamsemperfi.

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Design Extreme

    (@designextreme)

    @teamsemperfi The theme’s style is being applied to the border of the table (overwriting the less-specific styling provided by the plugin).

    You can use the Additional | Custom Styles, the theme’s additional styles or your own Child theme styling to correct this:

    .entry-content .opening-hours.no-border {
    	border: 0 none;
    }
    Thread Starter teamsemperfi

    (@teamsemperfi)

    @designextreme Cool, the border is gone, thank you!

    Regarding the weekday’s color I don’t have any sucess with CSS. I tried following code, but nothing happens. Can you lead me in the right direction?

    .day-name {
    	color: white;
    }
    Plugin Author Design Extreme

    (@designextreme)

    @teamsemperfi If you be more specific with the styling, then it will overwrite other styles.

    Here is an example:

    .entry-content .opening-hours .day-name {
    	color: white;
    }

    Aside from the plugin, I would recommend correcting the default table heading colour in your overall style sheet. Here is a suggestion:

    .entry-content thead th,
    .entry-content tr th {
        color: #FFF;
        font-weight: 700;
        padding: 9px 24px;
    }

    So, just edit the color value here.

    Thread Starter teamsemperfi

    (@teamsemperfi)

    Yes, this is working! Thank you, I appreciate your help a lot!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Font color / remove border’ is closed to new replies.