I am using magento 1.7. i have tried to change wrapper of cms content but still i cannot get how i can change wrapper of cms_page.
<block type="page/html_wrapper" name="cms.wrapper" translate="label">
<label>CMS Content Wrapper</label>
<action method="setElementClass"><value>std</value></action>
<block type="cms/page" name="cms_page"/>
</block>
and html output is
<div class="std">
CMS Page content
</div>
but i want to output like this
<section class="std">
CMS Page Content
</section>
Please give me any solution
You can try following code for change div to section
this will change div to section because html_wrapper class get tag name from a function
getElementTagNameinapp\code\core\Mage\Core\Block\Abstract\Wrapper.phpso by calling setAttribute we change/set value of
html_tag_name