Project page prev, next link

Hi,
So I have put my portfolio in Project pages. They all have links at the bottom to another project. I wouldn’t mind if they went to the next project on the navigation menu list, but they don’t. Maybe they are going to the next and previous project based on publish date. If I can’t get them to go to the next project on the menu list, how do I get rid of them completely.

I’ve tried these css codes already and do nothing.

.nav-links {
display: none;
}

.nav-next, .nav-previous {
display: none;
}

Anyone have any ideas?

This is just one of the pages I’m talking about.

Thanks
Cal

Anyone?

Hello there,

I hope you are doing well today.

You can use the following CSS code to remove the previous and next button by going to Appearance > Customize > Additional CSS and pasting it there.

/*Prev Next removal*/
.shapely-next-prev {
    display: none;
}

Best Regards,
Support

Hello there,

I hope you are doing well today.

You can use the following CSS code to remove the previous and next button by going to Appearance > Customize > Additional CSS and pasting it there.

/*Prev Next removal*/
.shapely-next-prev {
    display: none;
}

Best Regards,
Support

Thanks!
You guys are awesome!

Calvin