Styling

Overwriting styles is quite easy.

Just put some css to your website, which addresses the elements you want to restyle.

For example, just change all labels to uppercase:


<style>
	#bahlsengroup_contactform label {
		text-transform: uppercase;
	}
</style>

Living Example