Help changing border color

I have been trying to change the vertical border color on a wordpress site that I’m (trying to) build for my girlfriend from white to grey (#e2e2e2) to match the rest of the borders.

fitandfighting.com.au

Is there a way I can override all border colors?

I’m very new at this and have been learning html/css for 2 days now, so please be gentle :slight_smile:

Sure – in your style.css, you want to edit the sidebar-right class:

.sidebar.sidebar-right {
    border-left: solid 1px #ebebeb;
}

Do you have that kind of editorial control?

Yes, thanks so much! solved :grinning: