The max width for the post navigation module on projects is 1080px while on posts it isn’t specified. To fix, add the following CSS to the theme options:
/* START FIX post navigation for projects*/
.single-project.et_pb_pagebuilder_layout .nav-single {
width: 100% !important;
max-width: 100% !important;
margin: 0 !important;
}
/* END FIX post navigation for projects*/Code language: CSS (css)