Quote:
Originally Posted by TheWindows7Site
Your code is not XHTML 1.0 Transitional Compliant.
Find:
Code:
<ul class="v_postbit_serit_kullanici_adi">
<li class="v_postbit_serit_kullanici_adi_arka">
<div class="sol"> </div>
<div class="sag"></div>
<vb:if condition="$post['userid']">
{vb:raw memberaction_dropdown}
<vb:else />
<span class="username guest">
{vb:raw post.musername}</span>
</li>
</ul>
</vb:if>
Replace with:
Code:
<ul class="v_postbit_serit_kullanici_adi">
<li class="v_postbit_serit_kullanici_adi_arka">
<div class="sol"> </div>
<div class="sag"></div>
<vb:if condition="$post['userid']">
{vb:raw memberaction_dropdown}
<vb:else />
<span class="username guest">
{vb:raw post.musername}</span>
</vb:if>
</li>
</ul>
|
I am trying to do this to fix the dropdown issue as well and when I do I get an 'error, trying to add child to non-existing node'. Suggestions?