I'm completely new to CSS and the Ghost Blog Platform. I've been trying to follow this set of instructions on how to customize the font in the basic Casper theme.
However, I've run into an issue with a specific line in the instructions that doesn't seem to be working as expected. This line is causing icons to disappear and the font of text behind the icons remains unchanged.
[class^="icon-"]:before, [class*=" icon-"]:before
On another note, I've also been attempting to change my font to Work Sans. Below is the full code snippet that I have used.
<link href='https://fonts.googleapis.com/css?family=Work+Sans:400,700,500,600' rel='stylesheet' type='text/css'>
<style>
body,
h1, h2, h3, h4, h5, h6,
.main-nav a,
.subscribe-button,
.page-title,
.page-description,
.post-meta,
.read-next-story .post:before,
.pagination,
.site-footer,
[class^="icon-"]:before, [class*=" icon-"]:before {
font-family:"Work Sans", sans-serif; /* Replace with your preferred font */
}
</style>
Any tips or suggestions would be greatly appreciated!