@Tim,
I suppose you want to hide the activity-navigation bar by adding CSS rules to the Advanced settings of your current Moodle theme? I use it extensively to remove that bar from the Quiz and Lesson activities.
You write "The problem is that both of these pages are used in multiple states of questionnaire completion, some of which need to have the activity-navigation bar apparent, and others where we would like it not to."
You don't say exactly which student questionnaire pages you want to have that bar removed from. The following rules work ok for me:
#page-mod-questionnaire-complete .activity-navigation,
#page-mod-questionnaire-view .activity-navigation,
#page-mod-questionnaire-myreport .activity-navigation,
#page-mod-questionnaire-report .activity-navigation {
display: none;
}