You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to by-expression-web-designer
Granted EW only supports the old FP includes in the background but I
have a VERY interesting problem.
I have an include with an unordered list (this is the WHOLE body sans
spaces and it is valid XHTML
<ul class="nav">
<li class="first"><a href="page.htm">Page</a></li>
<li><a href="page.htm">Page</a></li>
<li><a href="page.htm">Page</a></li>
</ul>
When included the the code turns in the resulting page becomes
<ul class="nav">
<li><a href="page.htm">Page</a></li>
<li><a href="page.htm">Page</a></li>
<li><a href="page.htm">Page</a></li>
</ul>
EW strips out the class="first" in the first list item (support for
the :first pseudo class is iffy which is why I went this way)
I've tried other class names and even different attributes
(style="bla", sss="aaa") and ALL get stripped out.