Archived topic
Read theme loads Oswald font even after removing it
7 replies · Started by _blank on May 15, 2021
The Read theme keeps on making connection to Google fonts for "Oswald" even after i have manually switched all fonts to a system font, Segoe UI.
Hi there,
edit the front page, and select the Buttons block - check the Typography settings of each of the buttons.
That worked, thanks!
You're welcome
Hey David, can you tell me how can i get the same colored link hover like the "subscribe" link has in the navigation bar.
Is this for links within the content?
For reference this is the CSS that subscribe menu item uses - its loaded into the Customizer > Additional CSS with the Site Library import.
/* navigation subscribe underline */
.main-navigation:not(.slideout-navigation) .main-nav li.subscribe-button a {
box-shadow: 0px -8px 0px #e0314f inset;
transition: all 0.6s ease 0s;
padding: 0px;
margin: 0px 20px
}
.main-navigation:not(.slideout-navigation) .main-nav li.subscribe-button a:hover {
box-shadow: 0px -16px 0px #e0314f inset;
}
No, I meant the other links in the navigation bar, these links: https://imgur.com/a/EgZYakT
Remove the above CSS from Customizer > Additional CSS and add:
/* navigation underline */
.main-navigation:not(.slideout-navigation) .main-nav li a {
box-shadow: 0px -8px 0px #e0314f inset;
transition: all 0.6s ease 0s;
padding: 0px;
margin: 0px 20px
}
.main-navigation:not(.slideout-navigation) .main-nav li a:hover {
box-shadow: 0px -16px 0px #e0314f inset;
}
The only difference is in your current CSS we're targeting this: li.subscribe-button and now we target all li in the nav.