For some reason I cannot specifically override the overflow hidden property of the .inner-carousel
.
This code does the job in the general case:
.carousel-inner{
overflow: visible;
}
But I want it in the specific case that only when I use the aside
tag inside the carousel divs that the overflow will become visible (i.e. the aside will be visible).
Strangely enough, this code does not work.
.carousel-inner aside {
overflow: visible;
}
What could be going on?
I recreated a minimal example on Bootply.
When you change .carousel-inner aside{
to .carousel-inner{
the result that I want will work. The problem is that it then applies to all elements and I only want to apply it to aside
.
Edit: I've noticed this question gives a direct answer to my problem. For some reason though I can't get the solutions implemented. So if someone has another suggestion I'd be happy to hear it.