hey what code did you use for the pop up ask box?
<p>src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"><br />$(document).ready(function() {<br />//<br />$('a.poplight[href^=#]').click(function() {<br />var popID = $(this).attr('rel'); //Get Popup Name<br />var popURL = $(this).attr('href'); //Get Popup href to define size<br />var query= popURL.split('?');<br />var dim= query[1].split('&');<br />var popWidth = dim[0].split('=')[1]; //Gets the first query string value<br />$('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close">');<br />var popMargTop = ($('#' + popID).height() + 80) / 2;<br />var popMargLeft = ($('#' + popID).width() + 80) / 2;<br />//Apply Margin to Popup<br />$('#' + popID).css({<br />'margin-top' : -popMargTop,<br />'margin-left' : -popMargLeft<br />});<br />$('body').append('<div id="fade">');<br />$('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})<br />return false;<br />});<br />$('a.close, #fade').live('click', function() {<br />$('#fade , .popup_block').fadeOut(function() {<br />$('#fade, a.close').remove(); //fade them both out<br />});<br />return false;<br />});<br />});
Now paste this directly UNDER CustomCSS
#fade { /*--Transparent background layer--*/display: none; /*--hidden by default--*/background: #000;position: fixed; left: 0; top: 0;width: 100%; height: 100%;opacity: .80;z-index: 9999;}.popup_block{display: none; /*--hidden by default--*/background: none;padding: -10px;border: 0px solid #f2e7e2;float: left;font-size: 10;position: fixed;top: 55%; left: 55%;z-index: 99999;/*--Making IE6 Understand Fixed Positioning--*/*html #fade {position: absolute;}*html .popup_block {position: absolute;}
Now find your ask link and replace it with this
INSERT ASK LINK NAME HERE
Finally add this code under which is usually at the very bottom of your coding
INSERT ASK TITLE
I hope you found it useful if you need any help just ask me :3

















