You're right. That's very strange. I worked it out in the Firefox Developer Tools' edit css. In fact, if I load your now updated styles into that utility, they work without needing to be edited. So we just need to find a way to get them recognized.
Here's what I would suggest - revert to the styles as used before. Add an on page stylesheet to rajumaharjan.com/etos here as shown (highlighted):
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Etós New York City</title>
<link rel="stylesheet" type="text/css"href="css/global.css" />
<link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.1.css" media="screen" />
<style type="text/css" media="print">
@media print {
body * {
display: none!important;
background: none!important;
}
body {
background: none!important;
}
#fancybox-wrap, #fancybox-wrap * {
display: block!important;
top: 0!important;
left: 0!important;
}
#fancybox-title, #fancybox-close {
display: none!important;
}
}
</style>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="fancybox/jq . . .
But as I indicated before, due to the AJAX import and reinitializing of fancybox, it's virtually impossible for me to test this all out here locally. That really shouldn't matter for styles though, which ordinarily will apply to any imported and/or created content that arrives later.
Bookmarks