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.
Mike
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.
Mike
I think we need to concentrate on the jQuery issue first as this may be related.
jquery issue resolved. Still need help on this one.
UPDATE: Looks like it’s just a Chrome issue. Displays fine in IE and Firefox.
Thanks.
your wp theme imperial is still throwing js errors… in
http://www.blog.webofgamers.com/wp-content/themes/imperial/js/scripts.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..
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…
Ok LOL I fixed with the capital Q.
Error gone now.
Still have a display issue on the popup. As I mentioned though it’s only in Chrome, IE, and Firefox display fine.
Thanks.