How do I show the HTML descrption in wordpress photo gallery for my individual gallery pages?

With some CSS/HTML I managed to solve my issue. But, I had to enable Gallery title right above the description setting checkbox in my screenshot.

HTML

<a href="http://wordpress.stackexchange.com/bwg_gallery/<slug-url-here>/#top" name="top"></a>
<h4>Title</h4>

Addtional CSS ( to hide the title since I already have a title above this one )

.bwg_gal_title_0:not(.bwg_gal_description_0){
    display: none !important;
}