Remove header and footer on specific pages

I use CrewCenter skin from MarkSwan. I want to design a main page on phpvms system, but I don’t know how to remove the header from specific templates. Do you have any idea?

  • Tolga -

I found a solution by myself. All I did was to assign id to header and sidebar and little css modification.

 

<!-- REMOVE HEADER & FOOTER
<script>
document.getElementById(‘header’).remove();
document.getElementById(‘aside’).remove();
</script>
<style>
    .content-wrapper{
        margin-left: 0px;
    }
</style>
END REMOVE HEADER & FOOTER –>

 

This style modification is only valid for CrewCenter Skin, but the rest works perfectly fine with any other skin.