Viewing 2 replies - 1 through 2 (of 2 total)
  • This issue is been caused by this code line in your header:

    <link rel="stylesheet" type="text/css" href="style.css" media="screen">

    It’s looking for a file named style.css, but referencing to the current directory.
    Edit your current theme header.php file, replacing this line above for this one (or equivalent):

    <link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri();?>/style.css" media="screen">

    Thread Starter ebikefaq

    (@ebikefaq)

    Brilliant!
    Thank you Mateus. That makes perfect sense. Problem solved.

    You are a star ??

    Daniel

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Error attempting to load style.css for every template’ is closed to new replies.