Hello,
My K2 images are not showing in K2 articles. When I look at the source I see this:
<a class=”modal” rel=”{handler: ‘image’}” href=”/image_path” title=”Click to preview image”>
<img src=”/image_path” alt=”image alt” style=”width:600px; height:auto;” />
</a>
and in the CSS I have this:
.modal {
display: none;
overflow: hidden;
position: fixed;
top: 0px;
right: 0px;
bottom: 0px;
left: 0px;
z-index: 1050;
outline: 0px none;
}
I guess the problem is the “display:none”.
Then I set T3 template in Development mode and firebugs indicates that this modal class is located in bootstrap.less
But in bootstrap.less there is no class .modal
Where can I access the class .modal and how can I fix this issue?
Thank you for your help.