jquery - Wordpress page loads but all content invisible -
i @ wits end trying work out going on site page. on desktop, full screen, page loads , displays without issue. in fact page tests fine , there no errors appearing in firebug console. if resize browser window have screen size , refresh page, or load 1 of other pages on site, page appears load content invisible. firebug shows of code correctly loaded, scroll bar appear show content larger window , if use firebug content inspector when move mouse on page various sections highlight white (i.e. invisible). if resize window make larger content appears.
i made video demonstrate @ link: dropbox page load video
the page not display @ on mobile devices, although again scroll bars appear indicates content there invisible.
if want try url http://sounusual.com
has experienced problem before? cause , how resolve it?
a bit of background. site using wordpress. problem linked template being used. template appears have been created amateur. attempting resolve of issues having seems balking @ 1 may end having fix myself unsure start looking.
tia
i experimented little on website , source of problem seems div wrapper main content containing .page-transition class:
<div class="page-transition" ...
that class has opacity set 0:
.page-transition { position: relative; opacity: 0; ...
when device size above 1200px, div gets additional .pagetransitionend class sets opacity 1:
.page-transition.pagetransitionend { opacity: 1; }
so need figure out adds .pagetransitionend class , why doesn't work on device widths of less 1200px.
Comments
Post a Comment