Hi,
I use the element content “block code”, I can not make a Polaroid effect with css.
I use the following html code:
<ul class="pics">
<li><a href="" title="title01"><img src="img01" /></a></li>
<li><a href="" title="title02"><img src="img02" /></a></li>
......
</ul>
with ccs adapted with class “pics”.
But viewing the page, the code is modified as follows:
<ul class="pics">
<li><a title="title01" style="position: relative; overflow: hidden; display: block;">
<img alt="" src="img01">
<span class="image-overlay overlay-type-video" style="left: -5px; top: 0px; overflow: hidden; display: block; height: 300px; width: 310px;">
<span class="image-overlay-inside"></span>
</span></a></li>
........
</ul>
Changing the code does not give the desired effect.
How to prevent the insertion of <span> tags (and style) in the entry code?
Thank you for your help.
Hey!
Are you using the latest version of Enfold (2.9.1)?
Best regards,
Josue
I use wordpress 3.9.1 and Enfold 2.9.1
Hi!
Try with this code:
<ul class="pics">
<li><a href="" title="title01" class="noLightbox"><img src="img01" /></a></li>
<li><a href="" title="title02" class="noLightbox"><img src="img02" /></a></li>
......
</ul>
Cheers!
Josue
Excellent !
This works well now..
Thank you for your help
****************************
how to insert a “code block” in Tabs?
Hey!
Try using the shortcode:
[av_codeblock wrapper_element='' wrapper_element_attributes='' escape_html='' deactivate_shortcode='' deactivate_wrapper='']
CODE HERE
[/av_codeblock]
Regards,
Josue