Support Forum
I'm sure there is some css somewhere to edit but it looks to me the pop-up is not displaying correctly.
link: http://www.blog.webofgamers.com/forum/
I've attached a SS.
Thanks.
your wp theme imperial is still throwing js errors... in
http://www.blog.webofgamers.co.....js?ver=1.0
$(function(){
$('#slides').slides({
play: 7000,
hoverPause: false,
fadeSpeed: 500,
effect: 'fade',
crossfade: true,
generatePagination: false
});
});
try changing those $ in there to jQuery... much safer and better when used with WP..
Visit Cruise Talk Central and Mr Papa's World
Hi Papa,
I'm in Arizona too!
Anyway I've changed the offending code to no end. I either get:
I'm not familiar with JS. I know that the JS is being loaded from the Wordpress library before this script.
Here is the complete code as it stands.
// PREVENT FLICKER ON INITIAL LOAD
//=================================================================================================================================
document.write('<style type="text/css">body{display:none}</style>');
jQuery(function($) {
$('body').css('display','block');
});
// HOMEPAGE SLIDER
//=================================================================================================================================
jquery(function(){
jquery('#slides').slides({
play: 7000,
hoverPause: false,
fadeSpeed: 500,
effect: 'fade',
crossfade: true,
generatePagination: false
});
});
not quite what I asked for... this:
jQuery(function(){
jQuery('#slides').slides({
play: 7000,
hoverPause: false,
fadeSpeed: 500,
effect: 'fade',
crossfade: true,
generatePagination: false
});
});
notice the capital Q... still might not work... but that is where the error is...
Visit Cruise Talk Central and Mr Papa's World
it comes up fine for me with latest Chrome on PC...
Visit Cruise Talk Central and Mr Papa's World