I am currently troubleshooting a display issue that is visible below: Here's the HTML code:
<span class="pw_brand_product_list"><div class="wb-posted_in">Brand:</div><a href="https://www.google.com">My First Brand</a></span>
and this is the corresponding CSS:
.wb-posted_in {display:inline-block; margin:5px}
When I input all of this into JSFiddle, it displays correctly as "Brand: My First Brand." However, when I integrate it into my website, it does not appear as expected and still shows as:
Brand:
My First Brand
Could someone help me figure out what's going wrong? I suspect it might be a simple mistake given by a beginner. I even attempted using !important but it did not have the desired effect.