Hi,
I would like to remove the outside margin(see orange in screenshot) posts in a specific category, in my case “projects”.
I do know how to do this for ALL posts, but I only want to do this for posts in specific category.
I did find this bit of code, but it doesn’t seem to get rid of the outside margin, and limit on site width to 1200px:
// Make Posts in Category fullwidth
function make_post_fullwidth($layout) {
if(is_singular() || is_search() || is_category('projects') || is_tag()) {
$layout = "full-width";
}
return $layout;
}
add_filter('x_option_x_layout_content', 'make_post_fullwidth',999);

Thanks!

