Hello guys,
I`ve sent this already to Mark, but wanted to make sure he does not miss it somehow, so here is the problem:
When you insert an image inside your easyblog article using the lightbox option, here how the code for that image looks like:
<a class="easyblog-thumb-preview" title="Image caption here" href="http://wwd.domain.com/images/easyblog_images/778/image002_20141214-122118_1.jpg"><img class="" style="display: block; margin-left: auto; margin-right: auto;" title="Image caption here" alt="b2ap3_thumbnail_image002_20141214-122118_1.jpg" src="/http://www.domain.com/images/easyblog_images/778/b2ap3_thumbnail_image002_20141214-122118_1.jpg"></a>
so you see that this part:
<img class="" style="display: block; margin-left: auto; margin-right: auto;" title="Image caption here" alt="b2ap3_thumbnail_image002_20141214-122118_1.jpg" src="/http://www.domain.com/images/easyblog_images/778/b2ap3_thumbnail_image002_20141214-122118_1.jpg">
You place title="" and also alt=""
While normally valid for <img is only alt="", while title="" is just for a href
Also you see that the alt="" is using image file name instead of Image caption I`ve provided
So in the end the valid code for img src should be:
<img class="" style="display: block; margin-left: auto; margin-right: auto;" alt="Image caption here" src="/http://www.domain.com/images/easyblog_images/778/b2ap3_thumbnail_image002_20141214-122118_1.jpg">
Regards