Some common things that are often asked for is the ability to load custom fonts that a client has supplied. In this case you will need to have the fonts exist on a web server and then can load them using the following CSS. This example uses fonts that are available from the Google Font API.
The example adjusts the font for labels and other text elements used in the survey and also adjusts the size of the navigation buttons. Other styles can be changed with trial and error.
@import url(https://fonts.googleapis.com/css?
family=Lobster&subset=latin,latin-ext);
.wsc_mainbody,
.wsc_labeltext_p,
.wsc_radiofield-text,
.wsc_labeltext,
.butt_m {
font-family: 'Lobster',Arial,Helvetica,sans-serif !important;
}
.butt_m {
font-size: 22px;
height: 42px;
}
a.butt_m:link {
font-size: 22px;
height: 42px;
}
a.butt_m:visited {
font-size: 22px;
height: 42px;
}
a.butt_m:hover {
font-size: 22px;
height: 42px;
}
a.butt_m:active {
font-size: 22px;
height: 42px;
}