https://test.sportslab.cc/wp-content/themes/hamburg/style.plus.woo.min.css?ver=3.8.1
find this:
label{background:white;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;color:#b7b7b7;font-family:"Roboto Condensed", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;font-weight:300;left:0;padding:4px 8px;padding:0.25rem 0.5rem;position:absolute;width:100%}
If we prettify, this will look like this:
label {
background: white;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
color: #b7b7b7;
font-family: "Roboto Condensed", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
left: 0;
padding: 4px 8px;
padding: 0.25rem 0.5rem;
position: absolute;
width: 100%;
}
What you should do is remove position: absolute; and left: 0; or add this code:
.woocommerce #address_form label {
position: static;
}
in some other css file that should be generated on the page after style.plus.woo.min.css
Do not forget that this file was minified, so do not change it directly. I don’t know the structure of your theme and how this minified css is generated, so you’ll need to find that out (if you didn’t do this before) and make changes in source files.