How can I do this inside of a form field label:
1. BOLD FONT SIZE 1: font size 2
I want their to be different styles within the same label. How can I accomplish this?
How can I do this inside of a form field label:
1. BOLD FONT SIZE 1: font size 2
I want their to be different styles within the same label. How can I accomplish this?
You could do this with some jQuery added to your page template. It will replace the label HTML with a new string.
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function($) {
$('#field_2_1 label').html('<span class="biglabel">this font is bold and big</span> and this is not');
});
</script>
You just need to replace the "field_2_1" with the proper id from the containing list item.
Once you've got the new span/class in there, you can style it any way you like.