Hi,
I've seen other people having this same issue in the past but they all had mis-spellings in their codes and unfortunately, my problem is not coming from that...
My logo shows on all browsers except on iPhones!
The weirdest thing is that it works on safari (on a computer...) but just not on iPhones...
Here's what I have in my pre-nav (with no spaces in tags):
< a href="http://anais.antonio.free.fr">< /a>< div id="logo">< /div>
and this in my Css:
#logo {
background: url('http://anais.antonio.free.fr/files/tilelogo2.png') no-repeat scroll transparent;
cursor: pointer;
height:100%;
width:100%;
}
Now my problem is that my logo shows on iPhone only if I had the closing "a href" tag
< /a>
but then, if I do so, the link of my logo that is suppose to bring you back to my home page doesn'nt work anymore.
I tried to place the closing tag somewhere else but it nothing seems to work:
< div id="logo">< /div>< a href="http://anais.antonio.free.fr">< /a>
Or
< a href="http://anais.antonio.free.fr">< div id="logo">< /a>< /div>
Or this
< a href="http://anais.antonio.free.fr">< div id="logo">< /div>< /a>
But in any case, I have to choose between an invisible logo on iPhone or a logo that shows evrywhere but with an broken redirection link...!?
Any idea??
--> My website
Thanks!