Using an extra class or any custom css, I seem to be unable to affect the border-bottom value for a text element, namely .wpb_text_column. The element is coded to have 10px of bottom margin by default, but that should be easy to override.
Let’s say I gave the element the custom class of ‘welcome’ I then write the custom css for it:
.welcome {
border-bottom: 1px #000;
margin-bottom: 40px !important;
padding: 8px;
}
The border and padding would be applied to the element, but the margin-bottom would be completely ignored, even with the !important tag, and the element would default back to 10px of margin. Even attempting to add a line directly onto the very end of the stylesheet gets ignored as well.
The only way I’ve found to change this value is to directly change .wpb_text_column, which I do not want to do as I want to affect only this one instance.
Thoughts?