lokesh / lightbox2

THE original Lightbox script (v2).
http://lokeshdhakar.com/projects/lightbox2/
MIT License
6.22k stars 1.77k forks source link

Link in caption doesn't redirect #595

Closed angieyu closed 7 years ago

angieyu commented 7 years ago

Hi All,

The link to google looks like a hyperlink, but when I click it, nothing happens. I am expecting to get redirected to Google.

I am using lightbox2, I made an element like so import img1 from './images/img1.png'; ... <a className="withfadeout" href={img1} data-lightbox="img1" data-title="<a href='http://google.com'>Link to google</a>. More text."><img className="responsive-image" src={img1} alt="img1"/></a>

screen shot 2017-09-06 at 6 20 14 pm

My project is in React and the code is in JSX. Has anyone seen this issue before?

angieyu commented 7 years ago

i figured it out :) my .lb-nav element was too big and it was covering the link. I shortened the height and the link works now.