Wrong HTML structure when using ul container type
-
When configuring AjaxLoadMore tu use “ul” container type, the generated HTML has a wrong structure.
For example, if I set my repeater template with :
<li><!-- My content --></li>
The generated HTML will look like this :
<ul ><!-- The container type generated --> <div class="alm-reveal"> <li><!-- My content --></li> <li><!-- My content --></li> <li><!-- My content --></li> </div> </ul>
On top of that I’m using a css framework : the ‘alm-reveal’ div prevent it to work properly. The CSS targets only direct childrens like that :
ul > li{...}
and I don’t really want to overwrite the css to fix the problem.
Is there any way to fix that ?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Wrong HTML structure when using ul container type’ is closed to new replies.