nope, that didnt help either (seriously, I'm not normally that sloppy with my code!) - I changed it back to the original, see what it does now.
On 5/24/07, Sean Catchpole <[EMAIL PROTECTED]> wrote: > > > > $(document).ready(function(){ > > /*$("h1").after("<hr class=\"thinDivider\" />");*/ > > $("h1").after("<span class=\"thinDivider\"></span"); > > }); > > You forgot to end you span tag: > $(function(){ > $("h1").after("<span class=\"thinDivider\"></span>"); > }); > > > ~Sean > > > >