Add HTML Tags to Webform Labels - Drupal 7_ drupal girl - webforms not recognizing html tags in labels

I am sure a lot of people run into this issue.  Allowing html tags on the "label" field in webform form components to change part of the text to bold or other font formats. 

After hours of research on the web... here is the solution... and of course it is crazy easy!

 

Add

$conf['webform_allowed_tags'] = array('a', 'em', 'strong', 'code', 'img', 'ul', 'li', 'u');    

to your setting.php located here > sites/default /

 

Thanks Saurabh Dhariwal !