문제

I have an bootstrap accordion which I also applied x-editable that will only trigger through a link in the dropdown:

this

I want to remove:

line

to make it:

enter image description here

Isn't possible to remove the line below the x-editable?

도움이 되었습니까?

해결책

Try this in a stylesheet that comes after the x-editable stylesheet:

.editable-click,
a.editable-click,
a.editable-click:hover {
    border: none !important;
}

다른 팁

Use this in your main.js (jquery file that you are using for x-editable).

.accordion-1 is a class on accordion

 $(".accordion-1").attr('style', 'border-bottom: none;');
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top