1

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.

Thanks

pAkY88
  • 6,262
  • 11
  • 46
  • 58

1 Answers1

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.

Alohci
  • 78,296
  • 16
  • 112
  • 156
  • Thank you very much. Unfortunately I'm using a default Buddypress template and it's a bit hard to change it, I could try to explicitely set display property to block. I wil report the solution on this thread. – pAkY88 Jul 05 '11 at 14:14
  • Solved as I said in the previous comment. – pAkY88 Jul 05 '11 at 16:19