Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @markcanada

    The theme css rule overwrite the plugin css rules and generate this bug,

    please replace this css rule in the screen.css file from the theme

    /* replace old rule */
    
    /*[class*="icon-"] {*/
    	/*font-family: 'icomoon';*/
    	/*speak: none;*/
    	/*font-style: normal;*/
    	/*font-weight: normal;*/
    	/*font-variant: normal;*/
    	/*text-transform: none;*/
    	/*line-height: 1;*/
    
    	/*!* Better Font Rendering =========== *!*/
    	/*-webkit-font-smoothing: antialiased;*/
    	/*-moz-osx-font-smoothing: grayscale;*/
    /*}*/
    
    /* with the new rule */
    
    [class*="icon-"]:not([class*='socicon-']) {
    	font-family: 'icomoon';
    	speak: none;
    	font-style: normal;
    	font-weight: normal;
    	font-variant: normal;
    	text-transform: none;
    	line-height: 1;
    
    	/* Better Font Rendering =========== */
    	-webkit-font-smoothing: antialiased;
    	-moz-osx-font-smoothing: grayscale;
    }
    Thread Starter Mark Krieger

    (@markcanada)

    Amazing
    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Icons not showing any more on Zero Theme’ is closed to new replies.