There are many different fonts available here, which you can choose from. Here's how you can change your social wall's fonts, including the fonts of the individual posts displayed on your wall. We chose Google fonts for this example, but any web fonts will work.
Choose the font of your preference👇
On the next page click on “Get embed code”:👇
Click "import" and copy the import URL:
Paste the @import line into the custom CSS settings of your social wall (found on your Design settings page). You then can specify the font using the font-family specification that Google Fonts provides and enclose it with body { font-family: ... }.
A working example should look like this:
@import url('https://fonts.googleapis.com/css2?family=Anta&display=swap');
body {
font-family: "Anta", sans-serif;
font-weight: 400;
font-style: normal;
}
Each post will use the font you imported (in our case it's the Anta font) 👇
In case you have further questions, don't hesitate to contact the support team via chat or support@walls.io!