diff --git a/extension/qfq/qfq/BuildFormBootstrap.php b/extension/qfq/qfq/BuildFormBootstrap.php
index ea9758e1e4d93680c1816b462648e432f74d0dee..5455a18122c23073166cc619bc9d2139f62afcbe 100644
--- a/extension/qfq/qfq/BuildFormBootstrap.php
+++ b/extension/qfq/qfq/BuildFormBootstrap.php
@@ -79,7 +79,7 @@ class BuildFormBootstrap extends AbstractBuildForm {
         $this->wrap[WRAP_SETUP_LABEL][WRAP_SETUP_END] = "</div>";
         $this->wrap[WRAP_SETUP_INPUT][WRAP_SETUP_START] = "<div class='col-md-$input'>";
         $this->wrap[WRAP_SETUP_INPUT][WRAP_SETUP_END] = "</div>";
-        $this->wrap[WRAP_SETUP_NOTE][WRAP_SETUP_START] = "<div class='col-md-$note'>";
+        $this->wrap[WRAP_SETUP_NOTE][WRAP_SETUP_START] = "<div class='col-md-$note qfq-note'>";
         $this->wrap[WRAP_SETUP_NOTE][WRAP_SETUP_END] = "</div>";
 
     }
@@ -429,7 +429,8 @@ EOF;
             [$this->wrap[WRAP_SETUP_INPUT][WRAP_SETUP_START], $this->wrap[WRAP_SETUP_INPUT][WRAP_SETUP_END]], $formElement[FE_HTML_ID] . HTML_ID_EXTENSION_INPUT);
 
         // Note
-        $note = Support::wrapTag("<div class='qfq-note'>", $formElement[FE_NOTE], true);
+//        $note = Support::wrapTag("<div class='qfq-note'>", $formElement[FE_NOTE], true);
+        $note = $formElement[FE_NOTE];
         $html .= $this->customWrap($formElement, $note, FE_WRAP_NOTE, $formElement[FE_BS_NOTE_COLUMNS],
             [$this->wrap[WRAP_SETUP_NOTE][WRAP_SETUP_START], $this->wrap[WRAP_SETUP_NOTE][WRAP_SETUP_END]], $formElement[FE_HTML_ID] . HTML_ID_EXTENSION_NOTE);