Custom CSS Processing Bug

  • Author
    Posts
  • #84871

    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 4 years ago by timnolte.
    #85331
    Zed
    Cryout Creations mastermind

    What value is the titles size option currently set to?


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘Custom CSS Processing Bug’ is closed to new replies.