-
camino browser
Hi,
Has anyone else had this problem and sorted it; flash site publish to 100 % No Scale is perfectly aligned in safari and IE but not in Camino.
All you can see is the bottom off the site at the top 1/4 of the browser window.
If anyone can help I'd appreciate it.
Thanks
Linsey
-
Camino is based off Mozilla, so I'm willing to be this also fails in Firefox too.
Have a link to an example?
-
Here's a practice site link(removed)
Thanks
Linsey
-
Firefox won't expand - thus Camino as well - the Flash @ 100%... I've seen this in the past.
There are plenty of "fixes" out there, some include putting your flash file in a fixed size table - where you specify the table size via pixels - or to add a piece of code to the external CSS or in the < head > of the HTML file.
Code:
< style type="text/css">
< !--
/* start hiding from ie5 mac \*/
html { height: 99%;}
object, embed { height: 100%; }
/* stop hiding from ie5 mac */
body { height: 99%; }
-- >
< /style>
Again, no spaces.
Something like that would be assuming you're using the html that's exported from Flash directly and adding the above to the head should fix your problem.
I'll have to look around... but I found this once before.
-
Thanks for your help...I'm new to flash and website design!
Linsey
-
I put the above code into the html file and it works....the only problem is you can see the code at the top of the window.
Linsey
-
remove the single space before style, !, (between) -- and >, and /... in that order.
Also, place it in the head, before body.
-
I've done something wrong, here's some of my html code:
HTML Code:
<style type="text/css">
<!--
/* start hiding from ie5 mac \*/
html { height: 99%;}
object, embed { height: 100%; }
/* stop hiding from ie5 mac */
body { height: 99%; }
-->
</style>
<!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" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>BarbaraKingInteriorsTemplate</title>
Can you please tell me what I've done wrong?
Thanks
Linsey
-
HTML 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" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>BarbaraKingInteriorsTemplate</title>
<style type="text/css">
<!--
/* start hiding from ie5 mac \*/
html { height: 99%;}
object, embed { height: 100%; }
/* stop hiding from ie5 mac */
body { height: 99%; }
-->
</style>
Never put anything above the document declaration or title.
-
Thank you so much for the code and help. I really appreciate it. :)
Linsey