Soldato
hmmmm, tested my site on the Mac last night.
Despite working on IE, FF, and Opera on the PC, I came up against some problems on the Mac.
In Safari:
The drop down menus dont drop down.
See the new site here:
http://www.davereederdesign.com/
Yet, on my old site they do drop down:
http://www.davereederdesign.com/work/web/davereederdesignv3/index.html
The Javascript is the same, and the CSS is Suckerfish based. Looking at the xhtml (for the first 2 menu items only) on the old site, the master menu items didn't link to anything, as you can see, I just have a href="":
But on the new menu (for the first 2 items only), the master items link to the first page on that menu:
So, that is the only difference I can think of causing the menus NOT to drop down on the new site.
Any ideas?
On IE for the Mac (Not sure what version, but running OSX)
The new site wont load, gives the error "IE cant open that document type"
I can go to google and search for it, but when I click the link I get a page of random characters.
However, I can open other sites and the old site just fine.
Now, on both sites Im using xhtml 1.1, but with different content types:
OLD:
NEW:
Now, I was told before it was wrong to use than content type, so i changed it to the new one. However, before my site worked, now it's borked, any ideas?
Thanks in advance!
Despite working on IE, FF, and Opera on the PC, I came up against some problems on the Mac.
In Safari:
The drop down menus dont drop down.
See the new site here:
http://www.davereederdesign.com/
Yet, on my old site they do drop down:
http://www.davereederdesign.com/work/web/davereederdesignv3/index.html
The Javascript is the same, and the CSS is Suckerfish based. Looking at the xhtml (for the first 2 menu items only) on the old site, the master menu items didn't link to anything, as you can see, I just have a href="":
Code:
<ul id="nav">
<li><a href="" class="master" id="home"><span>home</span></a>
<ul>
<li><a href="index.html" class="homeitem">blog</a></li>
<li><a href="intro.html" class="homeitem">introduction</a></li>
<li><a href="about.html" class="homeitem">about</a></li>
</ul>
</li>
<li><a href="" class="master" id="work"><span>work</span></a>
<ul>
<li><a href="websites.html" class="workitem">websites</a></li>
<li><a href="print.html" class="workitem">print</a></li>
<li><a href="digital_art.html" class="workitem">digital art</a></li>
<li><a href="traditional_art.html" class="workitem">traditional art</a></li>
<li><a href="articles.html" class="workitem">articles</a></li>
</ul>
</li>
But on the new menu (for the first 2 items only), the master items link to the first page on that menu:
Code:
="navcontainer">
<ul id="nav">
<li><a href="index.html" class="master" id="home"><span>home</span></a>
<ul>
<li><a href="index.html" class="second">Blog/News</a></li>
<li><a href="about.html" class="second">About</a></li>
</ul>
</li>
<li><a href="web.html" class="master" id="work"><span>work</span></a>
<ul>
<li><a href="web.html" class="second">Web</a></li>
<li><a href="print.html" class="second">Print</a></li>
<li><a href="digitalart.html" class="second">Digital art</a></li>
<li><a href="traditionalart.html" class="second">Traditional art</a></li>
</ul>
</li>
So, that is the only difference I can think of causing the menus NOT to drop down on the new site.
Any ideas?
On IE for the Mac (Not sure what version, but running OSX)
The new site wont load, gives the error "IE cant open that document type"
I can go to google and search for it, but when I click the link I get a page of random characters.
However, I can open other sites and the old site just fine.
Now, on both sites Im using xhtml 1.1, but with different content types:
OLD:
Code:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
NEW:
Code:
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=iso-8859-1" />
Now, I was told before it was wrong to use than content type, so i changed it to the new one. However, before my site worked, now it's borked, any ideas?
Thanks in advance!