Some CSS help please

Hi folks, I am trying to do this:

but having big problems.

This is my snippet:

https://jsfiddle.net/5Lz3ravf/

But it looks nothing like it!

Hellllp please :frowning:

You clip-path is the problems.
Change to this:

-webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);

Hope this help :slightly_smiling_face:

1 Like

Here some insiration https://codyhouse.co/gem/css-breadcrumbs-and-multi-step-indicator or you can try using svg for the breadcrumbs. Another one here: https://line25.com/tutorials/how-to-create-flat-style-breadcrumb-links-with-css

1 Like

Thanks for this!

I want each arrow to be the same width, even when I use !important it still doesn’t work:

https://jsfiddle.net/5Lz3ravf/36/

Thanks for the help :slight_smile:

Ah these are really nice, thank you!