Mozilla Firefox vs Windows Internet Explorer v.7.0
I have made this button as sample
http://www.tortebomboniere.com/button01.html
If I use Windows Internet Explorer, the whole area of button is clickable.
If I use Mozilla Firefox, only the link inside the area is clickable.
Why? Is it possible change the codes to make clickable the whole area using
Mozilla?
Thanks
Paul
Re: Mozilla Firefox vs Windows Internet Explorer v.7.0
On Dec 27, 6:28 pm, "Paul" <orelieteNOS... [at] NOSPAMtiscali.it> wrote:
> I have made this button as sample
>
> http://www.tortebomboniere.com/button01.html
>
> If I use Windows Internet Explorer, the whole area of button is clickable.
> If I use Mozilla Firefox, only the link inside the area is clickable.
>
> Why? Is it possible change the codes to make clickable the whole area using
> Mozilla?
> Thanks
> Paul
That's not a button, it's a table. You *could* anchor the entire
table, but that wouldn't be correct (works in my browser, but would
probably break many others). That means placing <a href> and </a>
outside the table.
You really should use CSS instead. Just Google out "css buttons" and
you'll have all the info you need.
Re: Mozilla Firefox vs Windows Internet Explorer v.7.0
zara wrote:
> On Dec 27, 6:28 pm, "Paul" <orelieteNOS... [at] NOSPAMtiscali.it> wrote:
>> I have made this button as sample
>>
>> http://www.tortebomboniere.com/button01.html
>>
>> If I use Windows Internet Explorer, the whole area of button is clickable.
>> If I use Mozilla Firefox, only the link inside the area is clickable.
>>
>> Why? Is it possible change the codes to make clickable the whole area using
>> Mozilla?
>> Thanks
>> Paul
>
> That's not a button, it's a table. You *could* anchor the entire
> table, but that wouldn't be correct (works in my browser, but would
> probably break many others). That means placing <a href> and </a>
> outside the table.
Don't even suggest such a thing that is *so* invalid.
>
> You really should use CSS instead. Just Google out "css buttons" and
> you'll have all the info you need.
Agree, very simple example
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<meta http-equiv="content-language" content="en-us">
<title>Better</title>
<style type="text/css">
a.buttonized {
font: large bold, arial, helvetica, sans-serif;
display: block; padding: 1em; border: 3px outset #555;
text-align: center; width: 12em;
background-image: url(http://www.orefelici.com/sfondi/sfondo41.jpg);
}
</style>
</head>
<body>
<a class="buttonized"
href="http://www.tortebomboniere.com/bomboniere/en-regole.ht ml">Terms &
Conditions</a>
</body>
</html>
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Re: Mozilla Firefox vs Windows Internet Explorer v.7.0
"Jonathan N. Little" <lws4art [at] centralva.net> ha scritto nel messaggio
news:6e37$47746144$40cba7cc$18367 [at] NAXS.COM...
> zara wrote:
>> On Dec 27, 6:28 pm, "Paul" <orelieteNOS... [at] NOSPAMtiscali.it> wrote:
>> You really should use CSS instead. Just Google out "css buttons" and
>> you'll have all the info you need.
>
> Agree, very simple example
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
> "http://www.w3.org/TR/html4/strict.dtd">
> <html>
> <head>
Thank you very much. That code is very useful and I am going to use it
Paul