MAKE SURE to keep backups of the pages before you begin, just in case anything you do causes a problem that didn't previously exist.
Hmm, might be unavoidable. But there are some things you can try. Two I see right away:
1.) Too many meta tags - try eliminating any unnecessary meta tags. I see one that's duplicated, others that are throwaways. The dupe is:
Code:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
then later there's:
Code:
<META http-equiv="content-type" content="text/html; charset=iso-8859-1">
I'd certainly get rid of the second one. Others that can just go are:
Code:
<META NAME="robots" CONTENT="all"><!-- all | none | index | noindex | follow | nofollow -->
<META NAME="expires" CONTENT="never"><!-- yyyymmdd or never-->
<META NAME="revisit-after" CONTENT="30 days">
as these are either the default, or unimportant.
2.) Put all stylesheet links in their current order but one after the other and immediately following the last meta tag, before any scripts. This will help the browser setup the page as desired as quickly as possible. As a part of this, attempt to eliminate any contradictory stylesheet directives - that is anything in the stylesheets that's initially established but then completely changed in a subsequent directive. It's things like that which can cause rendering to be less smooth. Another part of this is to attempt to avoid inline style. I see a lot of that. these sorts of things are ideally declared in the stylesheet and applied to individual elements by giving them a class name or id.
I will try to have a closer look later to see if any other obvious, or not so obvious issue(s) pop up.
Of course, once any changes like these are made, the browser cache may need to be cleared, and/or the pages refreshed in order to see changes. And again, MAKE SURE to keep backups of the pages before you begin, just in case anything you do causes a problem that didn't previously exist.
Also, if you do all these things and still have a problem, try starting a new thread on the issue, as others might have more to contribute, and might not notice the turn this thread has taken.
Bookmarks