I tried following the link you provided and I’m not seeing a gray line under any of the breadcrumbs (I tried Firefox and Chrome). Did you resolve this since posting in the forums?
No, I think the featured video z-index hides it.
Here’s a screenshot of another page:
https://cloudup.com/cprUA4OrcyS
It’s just under that second link – Business Financial Solutions
Ok, the issue is you’re using too generic of CSS selectors. This is the offending code:
.post {
border-bottom: 1px solid #eaecee;
margin: 6.6rem 0 8.8rem;
padding-bottom: 2.2rem;
}
If that code is to just select posts (as in articles), you need to be more specific as right now it targets everything with the post class (e.g. the breadcrumbs). The padding-bottom is sending the underline for the links 2.2rem below the text, which is a little excessive.
Got it, thanks. I didn’t realize the .post style would affect the breadcrumbs. Thanks for taking a look at that. Will have to make sure to target that class specifically.