System removing anchors
Posted: Sun Jun 22, 2014 10:45 am
Hey guys, hope you are well, im using a template that was created from Bootstrap 3, and using the accordion setup that comes with Bootstrap eg.
Im adding this into CMSMS into a page, but whats happening is, once i have entered this data, if i come to edit that page again, CMSMS strips this line :
So, i have to re-add that line to each collapse item everytime i want to edit the content, any suggestions as to why this is happening or how i can avoid it in the future?
Many thanks,
Eddy
Code: Select all
<div class="panel-group" id="accordion">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne">
Collapsible Group Item #1
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse in">
<div class="panel-body">
PANEL CONTENT HERE
</div>
</div>
</div>
Code: Select all
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne">
Many thanks,
Eddy