Hi,
I am sorry, but there has to be a background color under the page title so that the letters don’t go over the hatched line (as it is by default).
To make only one page in the Boxed layout, you will need to create a child theme and put the following code into your child theme’s “functions.php”:
function happenstance_child_css_include () {
if ( !is_page( 1234 ) ) {
wp_enqueue_style('happenstance-child-wide-layout', get_template_directory_uri().'/css/wide-layout.css');
}
}
add_action( 'wp_enqueue_scripts', 'happenstance_child_css_include' );
Just replace the number “1234” in the code above with the appropriate ID of the page where you would like to have the Boxed layout. The “Boxed” layout needs to be set in the Customizer in order to make it work.
Best regards,
Tomas Toman
Note: If you have a question that is not related to the original topic, please create a separate topic for each new question. It helps to make the forum clearer. Thank you!