I built a static site initially and am now in the process of converting it to a wordpress site. You can find it here The last image in the right column, when clicked, should open up a fancybox and play a video. It worked very well in the static site, but for some reason in wordpress the box appears at the bottom of the page instead of the center. I’m pretty sure it is seeing the css because I can click on the link and find it.
Share
This is the result of the validation of your page
http://validator.w3.org/check?uri=http://training.mercury.stellarbluewebdesign.com/LittlestTumorFoundation/
Notice the comment :
Also notice
Passing your code through an editor in
ansimode (and showing all symbols), this is what I get :Those preceding hidden characters before the
DOCTYPEin your document makes your browser run in quirks mode hence the unexpected behavior of fancybox (which needs the document in standards mode to run properly)What you have to do is to save your WP (php) files in an editor using
UTF-8 without BOMencoding and upload them again (and alternatively forcing your ftp software to upload in binary mode)