I've been making extensive modifications to OJS at our site, http://smithsonianrex.si.edu . I'm starting to go through and check browser compatibility and, surprise surprise, Internet Explorer needs a few fixes.
I created an IE specific stylesheet for the site and added it directly to the lib/pkp/templates/common/header.tpl, but now I need to add a different IE specific stylesheet for the journal. I see this is accomplished in the template by the following code:
- Code: Select all
{foreach from=$stylesheets item=cssUrl}
<link rel="stylesheet" href="{$cssUrl}" type="text/css" />
{/foreach}
But I'm not sure how to perform the same action with externally applied code. The best I can think of is duplicating the header.tpl, renaming it something like headerJournal.tpl, and changing the call links in all the associated pages.. which seems incredibly tedious and ungainly.
I would be very grateful to any folks who might have a better (and hopefully more elegant!) suggestion!
