Hi @cutrano,
If you already deactivated the plugin and the issue isn’t fixed yet, then the issue has to do with something else.
This plugin removes all its configuration during deactivation, that means any issue occurred due to this plugin should be fixed automatically when you deactivate the plugin.
* I just checked your site http://e57.8b6.myftpupload.com/ and the h1 tags has Lato 100 weight font.
Hi Dipak. can you please send a screenshot of what you’re seeing? Ive checked in multiple browsers and definitely do NOT see 100 weight Lato
This problem started when I installed the plugin. It would stand to reason that if this plugin caused the change to occur that it would also NOT revert the changes back to what they were when deactivated, correct? I’m just guessing. All I know is that it worked before I installed your plugin
for an example of H1 Lato 100 weight see http://gistone.com
the site http://e57.8b6.myftpupload.com needs to have that font the same way
Here is a screenshot of what I see on http://e57.8b6.myftpupload.com. I hope I didn’t miscalculate anything.
Screenshot URL: https://cloudup.com/cBp9yqzYQVY
Sorry that looks like a 300 weight lato to me.
See http://gistone.com for what 100 weight Lato is.
This is my custon CSS
/* Adjusts the font color of the font in the parallax sections of vertical chained items */
.footer_widgets_row .featured_article_title, .latest-news a.title, h1, h2, h3, h4, h5 {
font-weight: 100 !important;
color: #333;
}
No, that’s 100 weight Lato. Please check the below screenshot of http://e57.8b6.myftpupload.com/ that includes debug info. from Developer Tools too.
(click on image to enlarge)
I hope this helps.
I know what it says….thats whats puzzling to me. I’m looking at the same thing. And you keep ignoring my message to look at http://gistone.com and see what actual 100 weight Lato looks like.
Trust me…this isn’t 100 weight. I installed your plugin and it;s broke. Thats the point.
If you dont know how to fix it just tell me and I’ll uninstall your plugin and move on to try and find support somewhere else.
For further reference you can have a look at this URL and you can see documentation about the actual Lato font
http://www.latofonts.com/lato-free-fonts/
Please try to delete the plugin and update me whether deleting this plugin fix your issue?
In order to use a google font with a different weight from the 400 default, you have to include that into the call.
Note the difference: in gistone.com the font is included with https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i, while in http://e57.8b6.myftpupload.com it’s being called with //fonts.googleapis.com/css?family=Lato&ver=4.9.5.
I deleted the plugin about an hour ago. Nothing has changed.
Felipe…this sounds valid…where do I code that
In your theme. You should look for where your fonts are enqueued and change it there. If you’re using a child theme you could use something like this:
function enqueue_lato_weights() {
wp_enqueue_style( 'lato-google-fonts', 'https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i' );
}
add_action( 'wp_enqueue_scripts', 'enqueue_lato_weights', 9 );
I didn’t test it, but it should work.
Felipe I’ll give it a shot. Thanks man