Jump to content

Magento2


Mavropoulos Panagiotis

Recommended Posts

You have a bigger problem in that you have included this w3css link within a html document, within your html document.

Place the w3css link at the top of any other css, or links to external files, because placing at the bottom means its styling for font-size etc will take precedence over any previous styling for these properties in the other css files.

THIS w3css.css portion

html, body {
    font-family: Verdana,sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

is overriding 

html {
    font-size: 62.5%;
}

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...