Why some content doesn’t appear browsing with Safari?

visiting this page ( http://www.legrandclub.net/members ) with Safari (so also visiting it on iPhone) the list of social network members doesn’t appear, why?

I can’t realize what’s the reason.

Read More

Thanks

Related posts

Leave a Reply

1 comment

  1. You have display:none on your members-directory-form <form>.

    You have attempted to nest <form> elements, which is not valid in (X)HTML (See Element Prohibitions) and will not succeed when your page is served with the text/html content type.

    Safari’s parser is using a different ‘repair’ procedure to the other browsers, such that the network members list is inside the members-directory-form in Safari, but not in the other browsers. Hence the display:none is only being applied to the list in Safari.