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-->
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.