Hi,
Is there an easy way to place the navigation arrows inside a inline popup just like this one?
http://codepen.io/dimsemenov/pen/sHoxp ?
I read in the DOCs and found this http://codepen.io/dimsemenov/pen/JGjHK
But that only works for type:'image' ?
What about 'inline' ?
Anyone ?
I don't know, if this is interesting anymore, but I solved this with CSS. My inline-popup has a max-width of 1000px, so I changed the max-width of the inline-popup to 1000px, too.
// Make arrows not leave the tile
.mfp-inline-holder .mfp-content {
max-width: 1000px;
}
Most helpful comment
I don't know, if this is interesting anymore, but I solved this with CSS. My inline-popup has a max-width of 1000px, so I changed the max-width of the inline-popup to 1000px, too.
// Make arrows not leave the tile
.mfp-inline-holder .mfp-content {
max-width: 1000px;
}