Spine Breadcrumb CSS Question
Darter02
Registered Users Posts: 947 Major grins
For a while now I've had a bit of CSS aimed at a "spine" breadcrumb that stacks on the right side of a desktop screen. It's been working well until a few weeks ago but I'm only now addressing it. it used to stack very nicely but is now all jumbled together.
Sample gallery
Here's the code I am using. I haven't been able to suss out how to fix this. Any help is very, very appreciated.
Sample gallery
Here's the code I am using. I haven't been able to suss out how to fix this. Any help is very, very appreciated.
/*Place spine breadcrumb*/ @media screen and (min-width: 768px) { .sm-page-widget-6266593 .sm-breadcrumb { opacity: 1; position: fixed; top: 0; left: 94%; width: 0; margin-left: 5px; margin-top: 250px; text-align: left; padding: 0; z-index: 99; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -o-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg); } } @media screen and (max-width: 1024px) { .sm-page-widget-6266593 .sm-breadcrumb { display:none; } }
0
Comments
Here's the code I'm currently using.