Hello Html gurus.
I got a website and I am intergrating a appointment database into my website, I have got the html coding but the writing is not write. I need to have white writing and not black writing and need to have all white boxes black and all writing white so it can match my website please help
coding below
<div class="ColorFont">1. Select a date</div>
{MonthlyCalendar}
<br><div class="ColorFont">2. Select Services</div>
<table width="100%">
<tr>
<td valign="top" style="{color:#666666;font-size:9pt}"><b>Services:</b></td>
<td valign="top">
<select name="serviceid" OnChange="{ServicesDropdownChange}" multiple>
<option value=""> -- select service -- </option>
<LOOP NAME="Services">
<option {Selected} value='{ServiceId}'>{ServiceName}</option>
</LOOP NAME="Services">
</select>
</td>
</tr>
<tr>
<td colspan="2"><i>{ServiceDescription}</i></td>
</tr>
</table>
<!-- } -->
<!-- { -->
<table width=100%>
<tr>
<td colspan="2"><br><div class="ColorFont">4. Verify details & Confirm</div></td>
</tr>
<tr>
<td colspan="2"><br><U><b>APPOINTMENT DETAILS</b></U><br><br></td>
</tr>
<tr>
<td>Date</td><td>{AppointmentDate}</td>
</tr>
<!--tr>
<td>Time</td><td>{AppointmentTime}</td>
</tr-->
<tr>
<td>Service</td><td>{ServiceName}</td>
</tr>
<!--tr>
<td>With</td><td>{TherapistName}</td>
</tr-->
<tr>
<td colspan="2" align="right">
{ConfirmBooking}
</td>
</tr>
<tr>
<td colspan="2">
<font color="#FF0000" style="{font-size:8pt}">
<b>Appointment will not be booked until 'CONFIRM' button is clicked</b>
</font>
</td>
</tr>
</table>
<!-- } -->
</td>
<td valign="top">
<!-- { -->
<div class="ColorFont">3. Select an opening</div>
<table border=0 cellspacing=2 class='bordertable' width="75%">
<TR class="bgtable">
<TH>Time</TH>
<LOOP NAME="Therapists">
<TH><strong>{ScreenName}</strong></TH>
</LOOP NAME="Therapists">
</TR>
<LOOP NAME="Slots">
<TR BGCOLOR="#DDDDDD">
<TD align=center>{SlotTime}</TD>
{TimeSlots}
</TR>
</LOOP NAME="Slots">
</table>
<!--table border=0 cellspacing=2 class='bordertable' width="75%">
<tr>
<td>
{SlotGrid}
</td>
</tr>
</table-->
<!-- } -->
</td>
</tr>
<tr>
<td colspan="2" align="center"><hr class="ColorFont"/></td>
</tr>
</table>
</body>
</html>
I got a website and I am intergrating a appointment database into my website, I have got the html coding but the writing is not write. I need to have white writing and not black writing and need to have all white boxes black and all writing white so it can match my website please help
coding below
<div class="ColorFont">1. Select a date</div>
{MonthlyCalendar}
<br><div class="ColorFont">2. Select Services</div>
<table width="100%">
<tr>
<td valign="top" style="{color:#666666;font-size:9pt}"><b>Services:</b></td>
<td valign="top">
<select name="serviceid" OnChange="{ServicesDropdownChange}" multiple>
<option value=""> -- select service -- </option>
<LOOP NAME="Services">
<option {Selected} value='{ServiceId}'>{ServiceName}</option>
</LOOP NAME="Services">
</select>
</td>
</tr>
<tr>
<td colspan="2"><i>{ServiceDescription}</i></td>
</tr>
</table>
<!-- } -->
<!-- { -->
<table width=100%>
<tr>
<td colspan="2"><br><div class="ColorFont">4. Verify details & Confirm</div></td>
</tr>
<tr>
<td colspan="2"><br><U><b>APPOINTMENT DETAILS</b></U><br><br></td>
</tr>
<tr>
<td>Date</td><td>{AppointmentDate}</td>
</tr>
<!--tr>
<td>Time</td><td>{AppointmentTime}</td>
</tr-->
<tr>
<td>Service</td><td>{ServiceName}</td>
</tr>
<!--tr>
<td>With</td><td>{TherapistName}</td>
</tr-->
<tr>
<td colspan="2" align="right">
{ConfirmBooking}
</td>
</tr>
<tr>
<td colspan="2">
<font color="#FF0000" style="{font-size:8pt}">
<b>Appointment will not be booked until 'CONFIRM' button is clicked</b>
</font>
</td>
</tr>
</table>
<!-- } -->
</td>
<td valign="top">
<!-- { -->
<div class="ColorFont">3. Select an opening</div>
<table border=0 cellspacing=2 class='bordertable' width="75%">
<TR class="bgtable">
<TH>Time</TH>
<LOOP NAME="Therapists">
<TH><strong>{ScreenName}</strong></TH>
</LOOP NAME="Therapists">
</TR>
<LOOP NAME="Slots">
<TR BGCOLOR="#DDDDDD">
<TD align=center>{SlotTime}</TD>
{TimeSlots}
</TR>
</LOOP NAME="Slots">
</table>
<!--table border=0 cellspacing=2 class='bordertable' width="75%">
<tr>
<td>
{SlotGrid}
</td>
</tr>
</table-->
<!-- } -->
</td>
</tr>
<tr>
<td colspan="2" align="center"><hr class="ColorFont"/></td>
</tr>
</table>
</body>
</html>
Comment