Question

I'm trying to hide the border in each accordion group with panel and then accordion .inner but none of these works. Where could I find the class/id of the accordion or how would I go to remove this style?

Was it helpful?

Solution

Accordions are made of panels, so you need to override the CSS of panels. To make it not affect all your panels, you can add the accordion tag as CSS selector.

This should work:

accordion .panel {
    border-width: 0;
}

By the way, I assume that you make use of UI Bootstrap and not the normal Bootstrap CSS/JavaScript.

OTHER TIPS

In current UI Bootstrap, the offending CSS rule selector and fix is below:

.panel-group .panel-heading+.panel-collapse .panel-body {
    border: none;
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top