Is there anybody who can help me out? I am currently using a "pullout" widget on my Wordpress website to show an inline link that opens specific text in a prettyPhoto box with scrollbars.
The setup works flawlessly in Google Chrome, but when I view the page in Firefox, it displays all the text within the pullout tab without hiding it until the link is clicked?
In my CSS, I have utilized the following:
.hide
{
display:none;
}
Below is the code for my widget:
<a href="#inline-1" rel="prettyPhoto" >Link</a>
<div id="inline-1" class="hide">
<p>Text that will appear in the prettyPhoto textbox when the Link is clicked</p>
</div>
</div>
I would greatly appreciate any assistance. Thank you.