It seems that I have found the problem, or at least a part of it.
I'm getting the following error:
string(130) "Smarty error: [in template:20 line 24]: syntax error: unrecognized tag: margin-bottom: -3px; (Smarty_Compiler.class.php, line 446)" string(111) "Smarty error: [in template:20 line 24]: syntax error: unrecognized tag '' (Smarty_Compiler.class.php, line 590)" string(129) "Smarty error: [in template:20 line 25]: syntax error: unrecognized tag: margin-bottom:-4px; (Smarty_Compiler.class.php, line 446)" string(111) "Smarty error: [in template:20 line 25]: syntax error: unrecognized tag '' (Smarty_Compiler.class.php, line 590)"
I've added a global contentblock named JavaScript for IE page width containing the following code:
{literal}
=b){nw=b+"px";}if(w
{/literal}
I'm calling this in the standard template with the following code:
{global_content name='JavaScript for IE page width'}
#primary-nav li {margin-bottom: -3px;}
#primary-nav li:hover {margin-bottom:-4px;} /* a HACK!!! for IE7 */
This removes the error from all pages except the Album pages. Seems to me that all I have to do is incorporate above code in the Album template that I'm using, since for some reason it seems to be bypassing it in the normal template when an Album page is generated. The question is.....how?????