Panel-collapse start closed

1

I have the following code: link

I need to get this collapse , start closed. That is, when opening the page it starts closed, and only after clicking it open ....

    
asked by anonymous 04.05.2015 / 21:41

2 answers

2

Just set up the HTML as if it were "

04.05.2015 / 22:23
1

Just increase display: none; to CSS:

.panel-body {
    background: #f5f5f5;
    padding: 25px;
    display: none;
}
    
04.05.2015 / 21:45