diff --git a/panels_ipe/panels_ipe.module b/panels_ipe/panels_ipe.module
index a11fc3a..74473ea 100644
--- a/panels_ipe/panels_ipe.module
+++ b/panels_ipe/panels_ipe.module
@@ -108,6 +108,19 @@ function template_preprocess_panels_ipe_pane_wrapper(&$vars) {
     );
   }
 
+  // Add option to configure CSS.
+  if (user_access('administer advanced pane settings')) {
+    $vars['links']['css'] = array(
+      'title' => t('CSS'),
+      'href' => $renderer->get_url('pane-css', $pane->pid),
+      'html' => TRUE,
+      'attributes' => array(
+        'class' => array('ctools-use-modal', 'panels-ipe-hide-bar'),
+        'title' => t('CSS'),
+      ),
+    );
+  }
+
   // Deleting is managed entirely in the js; this is just an attachment point
   // for it
   $vars['links']['delete'] = array(
