guys,
using DIV to show the view inside a node breaks the XHTML compliance. its because its not allowed to insert DIVs inside
or heading tags.
a solution is to use SPAN instead. since span differs from div because it is display css attribute is set as inline, the module should also include a css file with: ".view {display:block;}".
XHTML compliance is a requirement made by many clients.
best regards,
massa
Comments
Comment #1
mlsamuelson commentedThe Insert View module simply passes along code generated by the Views module. I'm guessing that your issue should be addressed to the Views module.
mlsamuelson
Comment #2
garyh commentedHi
To get around this problem wrap empty div tags around the call to your insert view statement.
Gary
Comment #3
webel commented@garyh Thanks for this tip, it works fine and solves lots of XHTML problems for me, Webel