I have a piece of HTML/CSS code that works fine in IE8 but in Chrome some of the <A HREF> and <SPAN TITLE> tags inside a <div id> section are ignored. Can anyone advise if there is a workaround for this behaviour or if my coding is incorrect.
Here is the HTML
<body>
<div id="event_wrap">
<div class="event_title">
** The following link doesn't work in Chrome **
<b>Official Club <a href="../getcourse.php?cid=103" target="_blank">Time Trial on Course H10/3</a> at 10:00</b> <br>
</div>
** The following <SPAN TITLE> tooltip doesn't work in Chrome **
<div class="event_person">
<i><font color="darkred">Official Club Event</font> - Organiser
<SPAN TITLE="01234 567890" >Fred Smith</i></SPAN><br>
</div>
<div class="event_do_comment">
** The following link DOES work in Chrome ! **
<b><a href="insert_event_comment.php?aid=2502">  [Add a Comment]</a></b><br>
</div>
<div class="event_comment"><b>The following Club Members have listed themselves as intending to ride this event.</b><br>
<div class="event_rider">Harry Smith<br>#
</div>
<br><b>Comment :</b> <i> Added by Fred Smith on 15/12/2010</i><br>I'll be riding this one, if there's no snow !<br><b>Comment :</b> <i> Added by Harry Smith on 15/12/2010</i><br>I'll be riding this one, if there's no snow ! And if there is snow, we'll ski the course<br><br>
</div>
</div>
</body>
My CSS contains the following:
#event_wrap {
width: 70%;
float: left;
margin-right: auto;
margin-left: 200px;
margin-top: 210px;
text-align: left;
font-size: 10pt;
font-family: arial;
word-wrap: break-word;
}
.event_title {
float: left;
width: 60%;
padding-left: 10px;
font-size: 12pt;
font-family: arial;
}
.event_person {
float: left;
width: 60%;
padding-left: 10px;
font-size: 10pt;
font-family: arial;
}
.event_do_comment {
float: right;
width: 20%;
font-size: 10pt;
font-family: arial;
}
.event_comment {
float: left;
width: 99%;
margin-left: 15%;
}
.event_rider {
float: left;
width: 99%;
margin-left: 5%;
}
Thanks for any help