diff --git a/skinr_ui.module b/skinr_ui.module
index 2418385..fde5411 100644
--- a/skinr_ui.module
+++ b/skinr_ui.module
@@ -645,6 +645,11 @@ function skinr_ui_form_submit($form, &$form_state) {
  * Implements hook_preprocess().
  */
 function skinr_ui_preprocess(&$variables, $hook) {
+  // Adding exclusion for html hook since it breaks contextual links appearing,
+  // setting "contextual-links-region" class to body element.
+  if ($hook == 'html') {
+    return;
+  }
   $original_hook = $hook;
   $theme_registry = theme_get_registry();
   if (isset($theme_registry[$hook]['original hook'])) {
