Hello, i want to tidy up the code a bit so i included the theme color css (in my case skyblue.css) into style.css. Could you tell me how to remove skyblue.css from header? Thanks!
Hello, Paste this code in Custom CSS Geocraft Settings > Theme Option > Styling Option > Custom CSS Code: .header_wrapper .header{ background:none; } This will solve your issue.
I think you got me wrong. I want to remove the stylesheet (<link rel="stylesheet"...) from the <head></head>.
Hello, I think you are selecting "skyblue" in the Appearance > Theme options > Styling options > Theme stylesheet That's why it is showing in the <head> area. If you select default "green" then it will not display in the <head>.
Any help? I want to remove some css from <head></head> like custom.css, shortcode.css because i don't need them.
Well I try to call my style-sheets in my custom functions file. This way, I do not need to edit the css in the header unless I need to do massive overwrite. for a way to call style-sheets in your functions use something like this: PHP: add_action('wp_enqueue_scripts', 'ko_scripts');function ko_scripts(){ //Enqueue styles wp_enqueue_style( 'findmyrental', get_template_directory_uri() . '/fmr.css'); } Below is a function you can add to your functions.php file. This is just simply loading any styles you may need through the functions file. just change the fmr.css to be your own style-sheet. and change the findmyrental to be your title for the script. So to accomplish what you want, you need to open your header. Remove the styles that you do not want, and then do what I suggested, and load them through a php file. All the best, -Kent