Hi, I want to change the 404 page to full width instead of showing the sidebar and pages. What do I need to edit to change the layout for that page?
Thanks much,
Chris
Hi Chris,
You’ll need to change the 404.php template to be:
<?php
global $avia_config;
/*
* get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
*/
get_header();
echo avia_title(array('title' => __('Error 404 - page not found', 'avia_framework')));
?>
<div class='container_wrap main_color fullsize'>
<div class='container'>
<div class='template-page content twelve alpha units'>
<div class="entry entry-content clearfix" id='search-fail'>
<?php get_template_part('includes/error404'); ?>
</div>
<!--end content-->
</div>
</div><!--end container-->
<?php get_footer(); ?>
Regards,
Devin
Perfecto! Thanks much Devin -Chris