- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2015 03:27 AM
Hi Guys
Is there any way I can change the font size of the questions of the record producers, like the multiple questions?
Regards
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-20-2015 08:03 AM
jQuery('input:radio').each(function() {
jQuery(this).parent().css( "font-size",20);
});

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2015 11:50 PM
Generic jquery to change label's font size... Add it in a onload script and customize as per your need
jQuery('label').each(function() {
jQuery(this).css( "font-size",20);
});
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-20-2015 05:50 AM
Will this change all the font sizes of a question options?
e.g
What is your title?
- IT
- HR
- Gardener
I need those 3 options to have a bigger font

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-20-2015 06:22 AM
What type of variable are you referring here ? Checkbox ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-20-2015 06:30 AM
This is a multiple option that I want to change