Ongoing: Effort to completely remove all inline styles from all templatesThis was/is a
HUGE effort and is needed to move forward to separating out the styling (css) from the markup ( html, tpls )
Inline styling such as
<td class="alt-1" width="20%">
<form method="post" action="{ubb url=""}">
<input type="hidden" name="ubb" value="doaddevent" />
{$lang.SUBJECT}
</td>
<td class="alt-1" width="80%">
<input type="text" name = "subject" class="form-input" />
</td>becomes
<td class="alt-1 ae-left">
<form method="post" action="{ubb url=""}">
<input type="hidden" name="ubb" value="doaddevent" />{$lang.SUBJECT}
</td>
<td class="alt-1 ae-right">
<input type="text" name = "subject" class="form-input" />
</td>Classes .ae-left and .ae-right are in reset.css for backward compatibility, but can now be changed in the current style to be any value desired without editing template files.
We also have cleaned up the actual markup to add indentation ( tabs ) to make the markup more readable.
If possibe, every .tpl file will be modified to strip out inline styling. .tmpl files are a different story and since they are admin, probably won't be cleaned up.
We might leverage the work that Rick did on the admin back end instead. ( tbd )