Thanks for your input.
I had previously tried replacing
<style type="text/css" media="screen">
<!-- @import url( <?php bloginfo('stylesheet_url'); ?> ); -->
</style>
with
<link rel="stylesheet" type="text/css" href="https://www.yorkrules.com/yorkrules3/wordpress/wp-content/themes/blue-zinfandel-enhanced-20/style.css">
But that had no effect, so I returned to the @import
method.
I also included the link to the javascript that’s used in the navbar, but again, without success.
The theme’s XHTML was not valid, but per doodlebee’s suggestion, I made the necessary changes, and now it is – still, no success.
Root, would you clarify for me your thoughts on the DTD?
Also, could the javascript links in my header be in the wrong place, or is there some other syntax error I’ve missed?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head profile="https://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<meta name="distribution" content="global" />
<meta name="robots" content="follow, all" />
<meta name="language" content="en, sv" />
<title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' :'; } ?> <?php bloginfo('name'); ?></title>
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" />
<!-- leave this for stats please -->
<link rel="Shortcut Icon" href="<?php echo get_settings('home'); ?>/wp-content/themes/blue-zinfandel/images/favicon.ico" type="image/x-icon" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_get_archives('type=monthly&format=link'); ?>
<?php wp_head(); ?>
<script type="text/javascript" src="https://www.yorkrules.com/yorkrules3/global/js/p7exp.js"></script>
<!--[if lt IE 7]>
<script defer type="text/javascript" src="https://www.yorkrules.com/yorkrules3/global/js/pngfix.js"></script>
<![endif]-->
<style type="text/css" media="screen">
<!-- @import url( <?php bloginfo('stylesheet_url'); ?> ); -->
</style>
</head>
Thank you for your continued assistance.