javascript - WordPress Theme Displaying Incorrectly In Chrome -
i'm having problem http://taxlienagents.com/ , how displaying in google chrome. when open site in google chrome, center tab area seems cover main text above it. if take @ this link, should able see talking versus when opening site in firefox. tried playing around z-index, didn't seem fix it. other issue seem having rolling on buttons ("how to," "coaching," , "done you") highlight covers 2/3 of button, think issue fancybox.
if give me advice on how fix this, appreciated.
you have several js related errors :
- 1 load jquery 2 times, in 2 different versions (one on-site, 1 google)
--> remove 1 of them
- 2 have error in adia-paper.js keeps fancybox triggering right - , blocks js execution.
--> try change
$(document).ready(function() {
$("#form-trigger").fancybox({ 'width' : 600, 'height' : 526, .....
to
jquery(document).ready(function() {
//contact form modal window jquery("#form-trigger").fancybox({ 'width' : 600, 'height' : 526, 'autoscale' : true, 'transitionin' : 'fade', 'transitionout' : 'fade'
3 trigger fancybox on non-existing div (#form-trigger)
--> although not major cause problem , better trigger js when needed...
jquery - when encountring big issue, blocks , stops executing functions further down line, , "slideshow" js driven . different browsers treat errors differently - , depending on own browser settings.
ff - firebug chrome , opera give same consul errors.
if fix problems , problem persist - can keep on de-bugging - pretty sure 1 of those, or culprit..
edit i still have other errors - not think problem. believe can because edited letabs js , added expression regarding height. strangely chrome sets div height le-tabs_content_container
58 px .. believe comes script . try set heights parent / children divs (and remove script) - worked me instantly on debugger..
Comments
Post a Comment