You can use custom fonts in your CheckMarket survey by using Google Webfonts.
- Go to https://fonts.google.com/ and find the font that you want to use.
- Select the font by clicking the + sign, next a black box will appear on the bottom of the page.
- Click the black box, to open the drawer.
- Copy the CSS code @import url(‘https://fon….
- Paste the @import code on the first line, before all other CSS code in your survey
In the example below we used the Raleway webfont
@import url(‘https://fonts.googleapis.com/css?family=Raleway&display=swap’);
@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap');
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
.heading-table,
.greeting,
div.greeting,
.button,
.ladda-button,
th.question,
td.question,
table,
.nps input,
input,
input,
textarea,
select,
button,
.matrixTable .sub-question,
th.subquestion, td.matrix_ratingpoints,
.response,
.radio label,
.checkbox label,
.ratingscale .innerCell,
.systemText.previewWarning,
.greeting {
font-family: 'Raleway', Arial, sans-serif;}
Comments
0 comments
Please sign in to leave a comment.