Here are a few small pages I removed tables from. They won't directly help SEO wise but they do remove the tables with a CSS design. Which means a faster site. Which means better for users. Happy users = More posts which means more content for search engines
Anyways, these were a couple quick ones:
in confirm_body.tpl replace everything with:
- Code: Select all
<a class="nav" href="{U_INDEX}">{L_INDEX}</a>
<div id="c3"><b>{MESSAGE_TITLE}</b></div>
<div id="pc" class="row1">
<div align="center"><form action="{S_CONFIRM_ACTION}" method="post"><br />{MESSAGE_TEXT}<br /><br />{S_HIDDEN_FIELDS}<input type="submit" name="confirm" value="{L_YES}" class="mainoption" /> <input type="submit" name="cancel" value="{L_NO}" class="liteoption" /></form></div>
</div>
in agreement.tpl replace it all with:
- Code: Select all
<a class="nav" href="{U_INDEX}">{L_INDEX}</a>
<div id="c3"><b>{SITENAME} - {REGISTRATION}</b></div>
<div id="pc" class="row2">
<span class="genmed"><br />{AGREEMENT}<br /><br /><br /><div align="center"><a href="{U_AGREE_OVER13}">{AGREE_OVER_13}</a><br /><br /><a href="{U_AGREE_UNDER13}">{AGREE_UNDER_13}</a><br /><br /><a href="{U_INDEX}">{DO_NOT_AGREE}</a></div><br /></span>
</div>
jumpbox.tpl replace all with:
- Code: Select all
<form method="get" name="jumpbox" action="{S_JUMPBOX_ACTION}" onSubmit="if(document.jumpbox.f.value == -1){return false;}"><span class="gensmall">{L_JUMP_TO}: {S_JUMPBOX_SELECT} <input type="submit" value="{L_GO}" class="liteoption" /></span>
</form>
messagebody.tpl:
- Code: Select all
<a class="nav" href="{U_INDEX}">{L_INDEX}</a>
<div id="c3"><b>{MESSAGE_TITLE}</b></div>
<div id="pc" class="row1">
{MESSAGE_TEXT}
</div>
And in your css file, if you don't already have it from the changes I put in above:
- Code: Select all
#c3 { width:100%;height:25px;border-left:1px solid;border-right:1px solid;border-bottom:1px solid; border-color:#006699;background:url(http://www.yoursite.com/images/cellpic3.gif) repeat-x;}
#pc1{height:125px;}
#pc{
border-left:1px solid;
border-right:1px solid;
border-bottom:1px solid; border-color:#006699;}
#pc {
width:100%;
min-height:250px;
height:auto;
}
/* for Internet Explorer */
/*\*/
* html #pc {
height: 250px;
}
/**/
Change the path to your template images.
Anyways just a few quick changes that reduce but about 50% the filesize on those tpl files. It all adds up, right?
