Reputation: 9158
Is it possible to include in a box (by fancybox) text and images and not only text or images?
Upvotes: 1
Views: 4524
Reputation: 8463
This is one of the way u can add text and image inside fancy box
$(document).ready(function() { /* * Examples - various */ $("#various1").fancybox({ 'titlePosition' : 'inside', 'transitionIn' : 'none', 'transitionOut' : 'none' }); });
<a id="various1" href="#inline1" title="Sample" name="various1">Preview</a>
<div id="inline1" style="width:500px;height:500px;overflow:auto;">
<font>Enter text here</font>
<img src="http://www.google.co.in/images/logos/ps_logo2.png">
</div>
Upvotes: 4