how do I create a template that has no header and no sidebar and puts a banner at the top of the page, and puts a full-width menu below the banner. These are settings I can set on a per-post level using the standard ENFOLD settings (and a small addition to functions: add_action(‘ava_after_main_container’, ‘after_head_image_func’);) and this is the result:
I have created a template called single-interview (my custom post type is called ‘interview’) and this is how it looks now: http://dev.vhpstudentedition.org/interview/leo-mittner/
How do I omit the header and the sidebar?
Hey!
Try adding this code to General Styling > Quick CSS:
.single-interview #header,
.single-interview .sidebar{
display: none !important;
}
.single-interview #main{
padding-top: 0 !important;
}
.single-interview .container .av-content-small.units{
width: 100%;
border: 0;
}
Cheers!
Josue