I am trying to use adobe fonts on my project. I am able to use Joe Workmans awesome stack on stack pages but having a difficulty adding custom fonts on headers on my blog page.
Help?
I added the Adobe project style code to the header and the following code to the CSS but I think I am doing it wrong.
I am kind of lost. This is my Css section of the blog page, I have pegged in the code for the adobe webs project but for some reason its just not loading.
For getting custom fonts into the RW built-in blog page, it’s usually a two-step process.
The first step is to take the URL to the font files and put it in the “Head” section of Rapidweaver. I usually do this in the site-wide code instead of per-page to save myself time.
If Adobe is hosting your fonts, there should be a link for you to use in the dashboard. The link should look something like this: <link rel="stylesheet" type="text/css" href="https://example.com/fonts/fontkit/stylesheet.css" />
The second step is to call that font on the actual blog page.
You’ve got the headers exactly right. I see a slight error in your CSS. All of your code needs to be wrapped inside the brackets {}, from after h6, all the way to the “;” at the end of font-style.
Themes don’t “block” custom CSS, however, they may (As Aspen does) specify a more specific specifier. Example main.theme h1 is more specific than just h1 so it gets applied. You could use !important, attribute but that’s bad practice unless you really need it. And you need to do it in the right place.
You can change the code you have to what I just gave you, (I tested it on your site) without cleaning up and it will work, but I’d clean up what you have.