Support

Account

Home Forums Front-end Issues ACF Admin Head Styles Reply To: ACF Admin Head Styles

  • Ok. Reset it back to URL and removed the quotes around the php echo. Still the same problem. Its printing the URL fine but says its an invalid property value.

    Thanks a ton for helping troubleshoot this!

    This is where it is now..

    <!--USER INPUT STYLES FUNCTION-->
        <?php function my_acf_admin_head() {
        
            $backgroundimage = get_field('background_image', 'option');
        
            ?>
            <!--BEGIN USER INPUT STYLES-->
            <style type="text/css">
                
                /**Adds custom global background image**/
                .main-content {
                    background: url ("<?php echo $backgroundimage; ?>");
                }
                
            </style>
            <?php
        }
        add_action('wp_head', 'my_acf_admin_head');
        ?>
        <!--END USER INPUT STYLES-->