Simple Pages secondary navigation

This is probably an easy fix, but I am having trouble removing the navigation from the 'secondary' div in one of my Simple Pages, which is an About page. I would like this secondary column to be empty but I am unsure about how to modify the code for this single page and still leave the simple_pages_navigation script for use in other future Simple Pages.

The easiest way for you to do this is probably by using CSS rather than trying to edit the SimplePages scripts.

SimplePages sets the id of the page body to the page name, so you could get rid of the navigation by adding a style to your theme:

#about .simple-pages-navigation
{
    display: none;
}

Thanks John - That's exactly what I needed.