Hello Mahesh,
I am using Catch Box Pro v 4.3.2
and I am trying to modify page – http://www.jordanlesa.org/jobs/job-roster/
Using the Full width – no sidebar page template – it does NOT fill the width of the screen. I want it use the full width – which on my desktop is about 1600 px – but at least 1400 px (I understand this might look wierd on the mobile screen) or better would be to specify this width on non-mobile screen and have a scroll bar else
so I have made a child theme based on page-full-width.php from the catch-box-pro theme directory in my catch-box-pro-child theme directory and am wondering what to do next
From your email the function, how do i use the function (which I asssume is in funcions.php)
=====================
add_filter( 'body_class', 'catchflames_child_more_body_classes' );
function catchflames_child_more_body_classes( $class ) {
$class[] = 'fixed-width-page';
return $class;
}
=====================
So if I add a body class called full-fixed-width using the above function – how do i specify on the page template – I dont see anything similar in page-fullwidth.php
Thanks