<style>
.site-header-content {
color: var(--ghost-accent-color); /* or color: #14171a of you don't want to use your accent color with it*/
background: none;
}
</style>
That depends on which font you’re trying to use. If you use something like google fonts, they tell you what you need to do to get the font loaded on your site
.site-header-content {
color: var(–ghost-accent-color); /* or color: #14171a of you don’t want to use your accent color with it*/
background: none;
font: Syne+Mono;
}
But the font on my Publication Description does not seem to be changing.
<link href="https://fonts.googleapis.com/css2?family=Syne+Mono&display=swap" rel="stylesheet">
<style>
.site-header-content {
color: var(--ghost-accent-color); /* or color: #14171a of you don't want to use your accent color with it*/
background: none;
font: Syne+Mono;
}
</style>
<style>
a.gh-head-button {
display: none;
}
</style>```
But it doesn't seem to rendering.
Does the code injection overrule all of the code in the theme’s zip file, or how does it work?
I would also like to implement a major change to the portal pop-up. How could I do that? Would it be via code injection or would I have to edit the theme’s zip file?
Edit: I have sorted the portal issue described above, kind regards @vikaspotluri123 for your assistance.