diff --git a/modules/consent/templates/consentform.php b/modules/consent/templates/consentform.php
index c92c64807542509cffdf9a511ad1d8765b325000..3c1e7146ad48798be73188c23c0fee6e734ce675 100644
--- a/modules/consent/templates/consentform.php
+++ b/modules/consent/templates/consentform.php
@@ -229,7 +229,7 @@ foreach ($this->data['noData'] as $name => $value) {
 	This fieldset is not expanded by default, but can be shown by clicking on the legend.
 	-->
 
-	<fieldset>
+	<fieldset class="fancyfieldset">
 		<legend id="attribute_switch"> » <?php echo $this->t('{consent:consent_attributes_header}'); ?></legend>
 	
 	<div id="addattributes"><a id="addattributesb"><?php echo $this->t('{consent:show_attributes}'); ?></a></div>
diff --git a/templates/frontpage.php b/templates/frontpage.php
index 0e065ea70fcfb11c6dadce737352a1dd5444762a..1c3a563486ba30a9d8fc00d58244e4d95e7e1802 100644
--- a/templates/frontpage.php
+++ b/templates/frontpage.php
@@ -188,7 +188,7 @@ echo '</dl>';
 if (is_array($this->data['metaentries']['remote']) && count($this->data['metaentries']['remote']) > 0)
 foreach($this->data['metaentries']['remote'] AS $setkey => $set) {
 	
-	echo '<fieldset><legend>' . $this->t(mtype($setkey)) . ' (Trusted)</legend>';
+	echo '<fieldset class="fancyfieldset"><legend>' . $this->t(mtype($setkey)) . ' (Trusted)</legend>';
 	echo '<ul>';
 	foreach($set AS $entry) {
 		echo '<li>';
diff --git a/www/resources/default.css b/www/resources/default.css
index 2f03409dc57580c776334c3f53a8a0c283713771..bf75c58f5b6205c847e6a4d1b6edf019ce9ab06a 100644
--- a/www/resources/default.css
+++ b/www/resources/default.css
@@ -296,11 +296,11 @@ table#table_with_attributes tr:last-child td {
 	border-bottom: none;
 }
 
-fieldset {
+fieldset.fancyfieldset {
 	margin: 2em 1em 1em 0px;
 	border: 1px solid #bbb;
 }
-fieldset legend {
+fieldset.fancyfieldset legend {
 	margin-left: 2em;
 	padding: 3px 2em 3px 2em;
 	border: 1px solid #bbb;