Styles are not loading when changing permalink to %postname%?
What are you typing in the src=”https://wordpress.stackexchange.com/questions/82463/xxxxxx”? Do you have the absolute path or relative path to your style? If your not loading the CSS from your functions.php with wp_enqueue_style you should load it like this in your header to always get the correct URL to the file: <link rel=”stylesheet” type=”text/css” href=”https://wordpress.stackexchange.com/questions/82463/<?php echo get_stylesheet_uri(); ?>”> … Read more