There is a row, panel, and a closed div on load.
Clicking on the panel should make the div appear while making the row and panel disappear. Clicking on X should make the panel and row appear again.
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<div class="row">
<div class="col-lg-3 col-md-4 col-sm-4 col-xs-12 margin_text">
<div class=" font-thin pull-left margin_top_4 padding_left_20">
<span class="font_size_17 ">Discussion Forum</span>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-header" ng-click="open_div=true">Click me</div>
</div>
<div ng-show="open_div">
Div Opened <span>X</span>
</div>
Clicking on Click me will open the div and make the discussion forum row and panel disappear. Clicking on X will close the div and make the panel and row reappear.