I'm using the prettyPhoto plugin and everything is OK except for two issues:
The box displays a weird character in the top and the title even when I set the option to hide it. This is my relevant code:
HTML:
<a id="linkGraph" rel="prettyPhoto[iframes]" href="graph.php?iframe=true" title="Gráfica">Iframe</a>
<a id="linkGraph" rel="prettyPhoto[iframes]" href="graph.php?iframe=true" title="Gráfica">Iframe</a>
<a id="linkGraph" rel="prettyPhoto[iframes]" href="graph.php?iframe=true" title="Gráfica">Iframe</a>
Javascript:
$("a[rel^='prettyPhoto']").prettyPhoto({
animation_speed: 'slow',
social_tools: false,
theme: 'facebook', /* pp_default / light_rounded / dark_rounded / light_square / dark_square / facebook */
show_title: false
});
But the result is:
Why appear the items that I marked in red circles? Thanks in advance.