Hello,
Sorry for the delayed response, i was not able to respond back as i was travelling and had limited internet access
Quest offers filters to change the container
class to make it Fixed or Fluid. Below is the cde you have to add in Child Theme functions.php
add_filter( 'quest_header_container_cls', 'header_container_cls' );
function header_container_cls( $cls ) {
return 'container-fluid';
}
Please note that the same filters also exist for content and footer, below are the filter examples, you have to implement the callback functions
add_filter( 'quest_content_container_cls', 'content_container_cls' );
add_filter( 'quest_footer_container_cls', 'footer_container_cls' );