I need to modify the HTML structure of a joomla module. I would like to create my custom module where I need to display the title below its content. This is the present HTML which is default format (rounded):
<div class="module_clipon">
<div>
<div>
<div>
<h3>Right Module</h3>
<p>This is the content</p>
</div>
</div>
</div>
</div>
I need the above HTML to be like :
<div class="module_clipon">
<p>This is the content</p>
<h3>This is the title</h3>
</div>
Basically to bring the title below the module content. What would be the way to manipulate the HTML of a module in Joomla. I believe it is possible by using the modChrome. If anybody has a simple to implement solution, please help.