Recent Topics

1 Apr 03, 2008 17:04    

I was just making a page-type post that has nested ULs, but apparently LI is not allowed within LI according to the rules so it told me that with this message:

# Tag <li> is not allowed within tag <li>
# Tag <li> is not allowed within tag <li>
# Tag <li> is not allowed within tag <li>
# (Note: To get rid of the above validation warnings, you can deactivate unwanted validation rules in your Group settings.)

Ignoring the idea of not allowing LI within LI, the text "Group settings" tries to be linked to the page where I could edit the group settings but apparently is a relative link because it uses the skins/skinname path.

Oopsie?

2 Apr 03, 2008 17:41

Check your code.
<li> is not allowed within <li>
so:
*BAD*

<li>
    <li>some text</li>
    <li>more</li>
</li>


*GOOD*

<li>
    <ul>
        <li>some text</li>
        <li>more</li>
    </ul>
</li>

But what probably happened is:
*ALSO BAD*

<ul>
    <li>some text<li>
    <li>more</li>
</ul>

So, check your code once again :roll:

3 Apr 09, 2008 01:51

ok that link will be fixed in next release.


Form is loading...