In the theme file anima/includes/custom-styles.php
on line 596 there is a missing intval()
call.
#header-page-title .entry-title { font-size: <?php echo absint( $anima_ftitlessize - 50 ) ?>%; }
Should be:
#header-page-title .entry-title { font-size: <?php echo absint( intval( $anima_ftitlessize ) - 50 ) ?>%; }
This is causing man errors to the debug log when the theme is active on a site.
Website: www.timnolte.com
-
This topic was modified 5 years ago by timnolte.