diff --git a/src/apps/rednatco/viewer.ts b/src/apps/rednatco/viewer.ts
index aad79890df4a04a41453499829faeeaeb44b0671..6a4dcfc17af2164b5cc903f471f6a51c2091a66f 100644
--- a/src/apps/rednatco/viewer.ts
+++ b/src/apps/rednatco/viewer.ts
@@ -18,6 +18,7 @@ import { Location } from '../../mol-model/structure/structure/element/location';
 import { MmcifFormat } from '../../mol-model-formats/structure/mmcif';
 import { PluginBehavior, PluginBehaviors } from '../../mol-plugin/behavior';
 import { PluginCommands } from '../../mol-plugin/commands';
+import { PluginConfig } from '../../mol-plugin/config';
 import { PluginContext } from '../../mol-plugin/context';
 import { PluginSpec } from '../../mol-plugin/spec';
 import { LociLabel } from '../../mol-plugin-state/manager/loci-label';
@@ -502,8 +503,16 @@ export class ReDNATCOMspViewer {
                 initial: {
                     isExpanded: false,
                     showControls: false,
-                },
+                }
             },
+            config: [
+                [PluginConfig.Viewport.ShowExpand, false],
+                [PluginConfig.Viewport.ShowControls, false],
+                [PluginConfig.Viewport.ShowSettings, false],
+                [PluginConfig.Viewport.ShowTrajectoryControls, false],
+                [PluginConfig.Viewport.ShowAnimation, false],
+                [PluginConfig.Viewport.ShowSelectionMode, false],
+            ]
         };
 
         const plugin = await createPluginUI(target, spec);
diff --git a/src/mol-plugin-ui/structure/selection.tsx b/src/mol-plugin-ui/structure/selection.tsx
index 832821dda7bcd3d889d23b3ca9f08ce1a022030a..1c71f2e89d87e3a74825eb78e07013494ba1d590 100644
--- a/src/mol-plugin-ui/structure/selection.tsx
+++ b/src/mol-plugin-ui/structure/selection.tsx
@@ -261,7 +261,7 @@ export class StructureSelectionActionsControls extends PluginUIComponent<{}, Str
         }
 
         return <>
-            <div className='msp-flex-row' style={{ background: 'none' }}>
+            <div className='msp-flex-row' style={{ background: 'none', display: 'none' }}>
                 <PureSelectControl title={`Picking Level for selecting and highlighting`} param={StructureSelectionParams.granularity} name='granularity' value={granularity} onChange={this.setGranuality} isDisabled={this.isDisabled} />
                 <ToggleButton icon={UnionSvg} title={`${ActionHeader.get('add')}. Hold shift key to keep menu open.`} toggle={this.toggleAdd} isSelected={this.state.action === 'add'} disabled={this.isDisabled} />
                 <ToggleButton icon={SubtractSvg} title={`${ActionHeader.get('remove')}. Hold shift key to keep menu open.`} toggle={this.toggleRemove} isSelected={this.state.action === 'remove'} disabled={this.isDisabled} />