Why does customizer.php insert that block of css?

I’d rather not have it inserted within the head tags. Was is the purpose and how do I remove it?

Sorry for the delay here.

Do you still need assistance regarding this?

Yes. I don’t understand why that php file inserts that block of css.

I am not sure which block of CSS you are talking about so could you please share me the screenshot of it along with your site URL where it is displaying so that i can help you?

Look in the Travelify core files: \library\functions\customizer.php beginning at line 637

It is the CSS that outputs based on the options set in the theme customizer.

You can remove it by removing the following action hook that outputs it.

add_action('wp_head', 'travelify_customizer_css');

Thank you.

You are most welcome here :slight_smile: