I've been attempting to add a border under the h4 heading "Best Sellers" on my website at using CSS. Despite trying in different browsers and clearing the cache, the border does not appear.
Here is the relevant HTML code snippet:
<div class="wpb_text_column wpb_content_element best-sellers">
<div class="wpb_wrapper">
<h4>Best Sellers</h4>
This is the CSS I used:
.best-sellers h4 {
border-bottom: 1px solid #eee;
padding: 7px 0px;
}
I also gave this CSS a try:
.best-sellers {
border-bottom: 1px solid #eee;
padding: 7px 0px;
}