diff --git a/info.textgrid.middleware.tgauth.webauth/tglib/WebUtils.class.php b/info.textgrid.middleware.tgauth.webauth/tglib/WebUtils.class.php
index 3e4031f19caf34171763712951ecc6b91aef98bf..736c679174908cb4f5677dba6e999152f90fd611 100644
--- a/info.textgrid.middleware.tgauth.webauth/tglib/WebUtils.class.php
+++ b/info.textgrid.middleware.tgauth.webauth/tglib/WebUtils.class.php
@@ -234,13 +234,14 @@ class WebUtils {
     echo "</script>";
 
     echo "</head>\n<body>\n";
-    echo "<div style=\"font-face: Arial;\"";
+    echo "<div style=\"font-face: Arial;\">";
     echo "<h2 style=\"text-align: center;\">$title</h2>\n";
     //    echo "This is what we got for sure:". serialize ($providedAttrs);
     //    echo $remote_user .serialize ( $attrMap );
 
     echo "<form name=\"Formular\" action=\"PutAttributes.php\" method=\"post\" onsubmit=\"return chkFormular()\">\n";
     echo "<table style=\"margin-left: auto; margin-right: auto;\">\n";
+    echo "<colgroup> <col align=\"left\" span=\"3\"></col></colgroup>\n";
     $oldToUversion = "";
     foreach ($existingAttrs as $a) {
       if ($a->name == "ToUversion") {
@@ -341,7 +342,7 @@ class WebUtils {
   public function formatISO3166list ( $listname, $preselected ) {
     $list = $this->list_iso3166();
 
-    echo "<select name=\"${listname}\" size=\"1\">\n";
+    echo "<select name=\"${listname}\" style=\"width: 200px;\" size=\"1\">\n";
     foreach ($list as $code => $name) {
       if ($code === $preselected) {
 	$selected = "selected=\"selected\"";