Duplicate page nav bar removal split test

I want to test 2 versions of my homepage

On one of them I want to remove the navigation bar but am struggling and the related answers I cannot get to work for me. Any help on how to remove the navigation bar on just one page (the duplicate of the homepage) would be golden.

hello there,

you can use the display none in CSS… look in the body of the Page you would like to remove the Navigation Bar From… it would be something like : page-id-(n) where (n) is the Page Number… Then add this to your CSS Style :


.page-id-50 #nav {
display: none;
}

Change 50 To your PAGE ID.

Goodluck

Sorted! Thanks Deadmix.

You are welcome, glad it works :wink: