Table cells appear wider in Internet Explorer

I've spent a long time creating a table-based website in DW
and previewing it in safari and firefox. I've just uploaded it and
tested on a PC and Internet Explorer is displaying the cells much
wider than other browsers. This throws out the alignment of the
whole site. Does anyone know why this is happening and how to force
the cells to be a specific width? The width setting in the property
inspector doesn't make any difference. thanks

On Fri, 18 Jul 2008 13:31:30 +0000 (UTC), "drennan_uk"
<[email protected]> wrote:
>Thanks. I'm on a really tight deadline with this but if
there's no quick fix
>for the text field prob in IE, I guess i'll have to learn
HTML/CSS properly.
>If you could show me the optimized version Malcolm that
would be a great help.
>Thanks for your time.
OK - here is even more stripped down code - but same visual
effect,
and it looks very similar in IE6,7 & FF & Safari
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=UTF-8">
<title>products</title>
<script type="text/javascript">
function change(obj) {
var tr=obj.parentNode.parentNode.parentNode; // this may
change
depending on the html used
tr.style.backgroundColor=(obj.checked)? '#66CCFF' :
'#B1AAD7';
</script>
<style type="text/css">
body { background-color: #000000; font-family: Verdana,
Arial,
Helvetica, sans-serif;
font-size: 9px; font-style:normal;}
table {
border-collapse: collapse;
border-spacing: 0;
border-color: #3399CC; } /* Not really necessary in this
application */
table th, tfoot td { background-color:#9000FF; } /* controls
the
purple background */
tbody td { text-align:right; } /* controls display of main
table
values */
tfoot input { text-align:right; font-size:1.3em; color:red;
results display style */
thead tr {height:3em;} /* controls height of top row */
tr.color1 td {background-color:#D2CAEB;} /* controls
background value
of row */
tr.color2 td {background-color:#B1AAD7;} /* controls
background value
of row */
tr.topRow { background-color:white; } /* controls background
value of
toprow */
tfoot td {text-align:center;} /* makes all content in td's
centre
unless overuled by .leftalign. th's are centred by default */
.leftAlign { text-align:left; }
</style>
</head>
<body>
<form action="#">
<table border="0" align="center" cellpadding="0"
cellspacing="0">
<thead>
<tr>
<th width="25"> </th>
<th width="25"> </th>
<th width="66" class="leftAlign" >Product</th>
<th width="27"> </th>
<th width="29">Add</th>
<th width="55">Price</th>
<th width="55">Energy</th>
<th width="55">Protein</th>
<th width="55">Carbs</th>
<th width="55">Of Sugs</th>
<th width="55">Fat</th>
<th width="55">Of Sats</th>
<th width="55">Fibre</th>
<th> </th>
</tr>
</thead>
<tbody>
<tr class="topRow">
<th> </th>
<td> </td>
<td>Product </td>
<td>1</td>
<td><label>
<input type="checkbox" name="toggle" value="0.80"
id="bread_brown7" onclick="change(this);">
</label></td>
<td>£0.60</td>
<td>15 kcal</td>
<td>54g</td>
<td>10g</td>
<td>20g</td>
<td>30g</td>
<td>40g</td>
<td>50g</td>
<th> </th>
</tr>
<tr class="color1">
<th> </th>
<td> </td>
<td>Product </td>
<td>2</td>
<td><input name="bread_brown2" type="checkbox"
onclick="clickCh()" value="0.80"
id="bread_brown7"></td>
<td>£0.15</td>
<td>15 kcal</td>
<td>54g</td>
<td>10g</td>
<td>20g</td>
<td>30g</td>
<td>40g</td>
<td>50g</td>
<th> </th>
</tr>
<tr class="color2" >
<th> </th>
<td> </td>
<td>Product </td>
<td>3</td>
<td><input name="bread_brown2" type="checkbox"
onclick="clickCh()" value="0.80"
id="bread_brown11"></td>
<td>£0.80</td>
<td>15 kcal</td>
<td>54g</td>
<td>10g</td>
<td>20g</td>
<td>30g</td>
<td>40g</td>
<td>50g</td>
<th> </th>
</tr>
<!-- more Item rows here -->
</tbody>
<tfoot>
<tr>
<td> </td>
<td> </td>
<td><strong>TOTALS</strong></td>
<td> </td>
<td> </td>
<td><input name="total1" type="text" id="total1"
value="0.00"
size="5" readonly="readonly"></td>
<td><input name="total2" type="text" id="total2"
value="0"
size="5" readonly="readonly" border="0"></td>
<td><input name="total3" type="text" id="total3"
value="0"
size="5" readonly="readonly"></td>
<td><input name="total4" type="text" id="total4"
value="0"
size="5" readonly="readonly"></td>
<td><input name="total5" type="text" id="total5"
value="0"
size="5" readonly="readonly"></td>
<td><input name="total6" type="text" disabled
id="total6"
value="0" size="5" readonly="readonly"></td>
<td><input name="total7" type="text" id="total7"
value="0"
size="5" readonly="readonly"></td>
<td><input name="total8" type="text" id="total8"
value="0"
size="5" readonly="readonly"></td>
<td> </td>
</tr>
</tfoot>
</table>
</form>
<script type="text/javascript">
function clickCh(){
var
tr=document.getElementsByTagName('tbody')[0].getElementsByTagName('tr');
var
total1=total2=total3=total4=total5=total6=total7=total8=0;
for(var i=0; i<tr.length; i++) {
if(tr
.getElementsByTagName('td')[4].getElementsByTagName('input')[0].checked)
var td=tr.getElementsByTagName('td');
total1+=parseFloat(td[5].firstChild.data.replace(/^[^\w\d\s\.\,]*/,""));
total2+=parseInt(td[6].firstChild.data);
total3+=parseInt(td[7].firstChild.data);
total4+=parseInt(td[8].firstChild.data);
total5+=parseInt(td[9].firstChild.data);
total6+=parseInt(td[10].firstChild.data);
total7+=parseInt(td[11].firstChild.data);
total8+=parseInt(td[12].firstChild.data);
document.getElementById('total1').value="£"+total1.toFixed(2);
document.getElementById('total2').value=total2;
document.getElementById('total3').value=total3+"g";
document.getElementById('total4').value=total4+"g";
document.getElementById('total5').value=total5+"g";
document.getElementById('total6').value=total6+"g";
document.getElementById('total7').value=total7+"g";
document.getElementById('total8').value=total8+"g";
</script>
</body>
</html>
~Malcolm~*...
~*

Similar Messages

  • Navigation Drop Down Menu Does Not Appear Correctly with Internet Explorer.

    Website was designed with Dreamweaver CS5 on a Mac. The navigation drop down menu does not appear correctly with Internet Explorer. When you mouse over a navigation option that has a drop-down menu, the drop-down portion appears on top of the first level. Hope someone can help me out.Thanks!
    http://www.catchaghosttoursofkansas.com

    Hi,
    and you should then iron out this minor inaccuracy, which I found in your source code, for example here:
    <div align="center"><a class="MenuBarItemSubmenu" href="hays.html">HAYS</a>
            <ul>
              <li><a href="hayswalkingtour.html">Walking Tour</a> </li>
              <li><a href="forthays.html">Fort Hays</a></li>
            </ul>
    All your "first" entries have to show a '#", like this:
          <div align="center"><a class="MenuBarItemSubmenu" href="#">HAYS</a>
            <ul>
              <li><a href="hayswalkingtour.html">Walking Tour</a> </li>
              <li><a href="forthays.html">Fort Hays</a></li>
            </ul>
          </div>
    after that you can link to the individual subgroups. See here e.g. (screenshots from my German DW):
    Hans-G.

  • Dreamweaver tables not displaying correctly in internet explorer browser, please help!!!!

    Could someone please help me with this issue i've been having for almost a year now and can't find any information on getting this fixed, for some reason the features specs and required tables rows are not displaying correctly, the image is out of aligned when viewing the results using the internet explorer browser only, the firefox browser works just as needed but when i try to view the same code in IE the tables are not aligned properly and the text is not margined correctly either, i tried playing around with the css style that i have and no results. Please help me fix this issue so that my page would display in internet explorer just like under Firefox. Below are the pictures of the problem i'm having.
    This picture shows how i want it displayed on the internet explorer and firefox browser:
    Here is results in firefox browser:
    Here is results in internet explorer browser:
    As you can see the tables are all messed up, text is not centered properly even if i coded it right.
    Here is the coding for this page:
    PLEASE HELP ME OUT WITH THIS PROBLEM, I NEED TO FIGURE OUT HOW TO MAKE INTERNET EXPLORER TO DISPLAY THE INFORMATION CORRECTLY JUST LIKE FIREFOX?
    <style type="text/css">
    <!--
    .title {
    background-image: url(http://www.ehobbyplanet.com/eBay/Layout/Title.jpg);
    background-position: center center;
    font-size: 24px;
    font-weight: bold;
    color: #FFF;
    font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
    vertical-align: middle;
    .description {
        background-image: url(http://www.ehobbyplanet.com/eBay/Layout/Description.jpg);
        background-position: center center;
        font-family: "Times New Roman";
        font-size: 16px;
        line-height: 20px;
        font-weight: bold;
        color: #000;
        text-align: left;
        vertical-align: middle;
        padding-right: 20px;
        padding-left: 20px;
    .text {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #F00;
    text-indent: 2em;
    .features {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 18px;
    font-style: italic;
    font-weight: bolder;
    text-decoration: underline;
    color: #666666;
    .featurebackground {
        background-image: url(http://www.ehobbyplanet.com/eBay/Layout/Features.jpg);
        background-position: center center;
        font-size: 14px;
        font-family: "Times New Roman";
        font-style: normal;
        font-weight: normal;
        line-height: 18px;
        background-repeat: no-repeat;
        padding-right: 10px;
    .policy {
    .fsr_style { font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: normal;
    color: #000000;
    font-style: normal;
    background-color: #FFFFFF;
    padding-top: 5em;
    padding-right: 20px;
    background-image: url(http://www.ehobbyplanet.com/eBay/Layout/Features.jpg);
    .number {
    .policy {
        padding-left: 20px;
        font-family: "Times New Roman", Times, serif;
        font-weight: normal;
        font-size: 14px;
        padding-top: 10px;
        padding-right: 7px;
        padding-bottom: 10px;
    -->
    </style>
    <body>
    <table width="935" border="0">
    <tr>
    <td><img src="http://www.ehobbyplanet.com/eBay/Layout/eHobbyShortHeader.jpg" width="928" height="165" /></td>
    </tr>
    <tr>
    <td height="44" align="center" valign="middle" class="title">HPI 1/5 Baja 5T Gas Truck RTR<td></td>
    </tr>
    <tr>
    <td height="31" align="center" valign="middle" class="number">HPI Item #10620<td width="10"></td>
    </tr>
    </table>
    <table width="925" height="326" border="0">
    <tr>
    <td width="16"> </td>
    <td width="549"><img src="http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-1md.jpg" width="549" height="429" id="mainPic"/></td>
    <td width="35"> </td>
    <td width="1559"><p><img src="http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-1sm.jpg" width="116" height="85" onClick="changePic('Image-1')"/> <img src="http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-2sm.jpg" width="116" height="85" onClick="changePic('Image-2')"/></p>
    <p><img src="http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-3sm.jpg" width="116" height="85" onClick="changePic('Image-3')"/> <img src="http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-4sm.jpg" width="116" height="85" onClick="changePic('Image-4')"/></p>
    <p><img src="http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-5sm.jpg" width="116" height="85" onClick="changePic('Image-5')"/> <img src="http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-6sm.jpg" width="116" height="85" onClick="changePic('Image-6')"/></p>
    <p><img src="http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-7sm.jpg" width="116" height="85" onClick="changePic('Image-7')"/> <img src="http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-8sm.jpg" width="116" height="85" onClick="changePic('Image-8')"/></p>
    <p class="text">Click to enlarge picture</p></td>
    </tr>
    </table>
    <table width="928" height="124" border="0">
    <tr>
    <td height="320" class="description"><p>HPI Racing is proud to present the Baja 5T, a <strong>ready-to-run</strong> (RTR) 1/5th scale off-road truck that expands on the award-winning Baja  5B family. With the Baja 5T you get aggressive desert truck looks, high  performance new features, and compatibility with many of the existing  Baja 5B spare parts and option parts, wrapped up in a RTR package that  gets you running in just a few minutes.</p>
      <p>Includes: HPI Baja 5T RTR Truck with 1.6 cu in gasoline engine, 27MHz FM Radio, two water resistant servos, 3.4oz (100cc) 2-cycle oil, 2oz (60cc) shock oil, 1oz (30cc) diff oil, 1oz (30cc) air filter oil, tube of gear grease, 3000mAh receiver pack, wall charger, body with wing, extra air filter, wrenches, decal sheet and illustrated instruction manual.</p></td>
    </tr>
    </table>
    <table width="928" border="0">
    <tr>
    <td width="290"> </td>
    <td width="17"> </td>
    <td width="292"> </td>
    <td width="17"> </td>
    <td width="290"> </td>
    </tr>
    <tr>
    <td align="center" class="features">Features:</td>
    <td align="center"> </td>
    <td align="center"><span class="features">Specifications:</span></td>
    <td align="center"> </td>
    <td align="center"><span class="features">Required:</span></td>
    </tr>
    <tr>
    <td height="526" class="featurebackground"><ul>
    <li>Ventilated Disc Brake System</li>
    <li>Heavy Duty Rear Dogbones</li>
    <li>Moulded Nylon Rear Spoiler</li>
    <li>Aluminum Alloy Diff Case</li>
    <li>Dirt Guards</li>
    <li>Full Metal Ball Bearings</li>
    <li>Front &amp; Rear Sway Bars</li>
    <li>Modified Rear Shock Tower</li>
    <li>Heavy Duty Inner Foam</li>
    <li>Revised Gearing</li>
    <li>High Flow Muffler</li>
    <li>SFL-10MG2 Metal Gear Steering Servo</li>
    <li>Heavy Duty Beadlocks</li>
    <li>8000 RPM Clutch</li>
    <li>Anodized Aluminum Parts</li>
    <li>Double Wishbone Suspension</li>
    <li>Adjustable Suspension</li>
    <li>Baja 5T-1 Truck Body</li>
    <li>Extended Roll Cage</li>
    <li>Outlaw Truck Wheels / Desert Buster Tires</li>
    <li>Fuelie 26 Engine (26cc)</li>
    <li>All Metal Transmission Gears</li>
    <li>High Quality Radio Gear</li>
    </ul>
    <td> </td>
    <td class="featurebackground"><ul>
    <li>Drive System: 2WD viscous Diff</li>
    <li>Tires (front &amp; rear): Truck Wheels / Desert Buster</li>
    </ul>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p></td>
    <td> </td>
    <td class="featurebackground">
    <ul>
    <li class="featurebackground">Unleaded Gasoline: 87-93 octane, mix gasoline with two cycle oil at 25:1 ratio</li>
    <li class="featurebackground">Transmitter Batteries: 8x AA</li>
    <li class="featurebackground">Screwdriver: Flat blade, 3/16&quot; (4-5mm) wide</li>
    </ul>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p></td>
    </tr>
    </table>
    <table width="928" height="621" border="0">
    <tr>
    <td> </td>
    </tr>
    <tr>
    <td height="135" background="http://www.ehobbyplanet.com/eBay/Layout/ePaymentMethod.jpg" class="policy"><p>We accept Visa, Mastercard and Discover Card and PayPal. If your unable to send payment using these methods please contact us at [email protected]. All payments need to be sent within 5 days.
      </p>
      <p> </p></td>
    </tr>
    <tr>
    <td height="21"> </td>
    </tr>
    <tr>
    <td height="220" background="http://www.ehobbyplanet.com/eBay/Layout/eNormalShipping.jpg" class="policy"><p>All our orders are shipped out within 72 business hours unless stated. We ship everything out using the best packaging material to insure safe deliveries using shipping companies such as USPS Postal Office and UPS services (Shipping times will vary depending on the service you choose). Tracking information will be automatically sent via email after an order has been shipped out. We Definitely Combine Shipping for multiple items, if for some reason our eBay checkout isn&rsquo;t combining your items please wait for a custom eBay invoice which will have your order combined into one, reducing the shipping price. For international customers, please note: &quot;that Import duties, taxes, and charges are not  included in the item price or shipping charges. These charges are the buyer's  responsibility. Check with your country's customs office to find out what these  additional costs will be before you bid or buy&quot;.</p>
      <p>Please Note for International Customers Only: Due to the large size of this item there are several countries that have a size limitation which we are not able to ship to, if by any means your order goes through to us and it falls in the country size restrictions and your order cannot be shipped out we have the right to cancel your order (before cancelling the order we will contact the customer via email).</p></td>
    </tr>
    <tr>
      <td> </td>
    </tr>
    <tr>
    <td height="104" background="http://www.ehobbyplanet.com/eBay/Layout/eInsurance.jpg" class="policy">We offer insurance which is optional during checkout for both Domestic and International customers which will cover the full amount paid by customer, if insurance isn't purchased we are not responsible for packages that are missing during transit. If you use the USPS First Class Mail International shipping service please allow 10 - 25 business days for the delivery of your package.</td>
    </tr>
    <tr>
      <td height="21"> </td>
    </tr>
    <tr>
    <td height="135" background="http://www.ehobbyplanet.com/eBay/Layout/eReturns.jpg" class="policy">We want you to be completely happy with your purchases. So we do everything we can to assure you get the exact merchandise you order, delivered on time. If by any means your unsatisfied with your purchase we will be happy to accept returns for an exchange or a refund within 14 days. If shipping the item back, customer is responsible for freight charges to us. We offer refunds &amp; exchanges if your not satisfied with your purchase. The returned product needs to be in the same condition it was shipped out in, unused and in it&rsquo;s original packaging. If by any chance there has been an issue with your order and you want to request a return please email us at [email protected].</td>
    </tr>
    </table>
    </body>
    <script type="text/javascript">
    if(document.images) {
    tempImage = new Image();
    tempImage.src = "http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-1md.jpg";
    tempImage.src = "http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-2md.jpg";
    tempImage.src = "http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-3md.jpg";
    tempImage.src = "http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-4md.jpg";
    tempImage.src = "http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-5md.jpg";
    tempImage.src = "http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-6md.jpg";
    tempImage.src = "http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-7md.jpg";
    tempImage.src = "http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-8md.jpg";
    function changePic(newName) {
    newPicURL = "http://www.ehobbyplanet.com/Items/RC/HPI/10620/"+newName+"md.jpg";
    mainPic.src = newPicURL;
    </script>
    Here is my contact information:
    Paul
    [email protected]

    Try this without the border images and it will work in all browsers with increased text size. That's assuming eBay supports embedded CSS styles (which I'm not convinced they do).  Inline styles are safer IMHO.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    .title {
    background-image: url(http://www.ehobbyplanet.com/eBay/Layout/Title.jpg);
    background-position: center center;
    font-size: 24px;
    font-weight: bold;
    color: #FFF;
    font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
    vertical-align: middle;
    h2 {font-size:1.7em; color:#000; margin-top:0em; margin-bottom: 2px;}
    ul,li {
    font-size:14px;
    list-style:disc;
    line-height:1.5;
    font-family: "Times New Roman", Times, serif;
    .description {
    font-family: "Times New Roman";
    font-size: 16px;
    line-height: 1.2;
    font-weight: bold;
    color: #000;
    text-align: left;
    vertical-align: middle;
    border: 4px solid red;
    padding: 0 20px 20px 20px;
    .text {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #F00;
    text-indent: 2em;
    .features {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 18px;
    font-style: italic;
    font-weight: bolder;
    text-decoration: underline;
    color: #666666;
    line-height: 3em;
    .featurebackground {
    padding-right: 10px;
    border: 4px solid red;
    width: 200px;
    vertical-align: top;
    padding-top: 1em;
    .policy {
    border: 4px solid red;
    margin-top: -2em;
    .fsr_style { font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #000000;
    background-color: #FFFFFF;
    padding-top: 5em;
    padding-right: 20px;
    border: 4px solid red;
    .number {
    .policy {
    font-family: "Times New Roman", Times, serif;
    font-weight: normal;
    font-size: 14px;
    padding: 0 20px 20px 20px;
    </style>
    </head>
    <body>
    <table width="935" border="0">
    <tr>
    <td><img src="http://www.ehobbyplanet.com/eBay/Layout/eHobbyShortHeader.jpg" width="928" height="165" /></td>
    </tr>
    <tr>
    <td height="44" align="center" valign="middle" class="title">HPI 1/5 Baja 5T Gas Truck RTR</td><td></td>
    </tr>
    <tr>
    <td align="center" valign="middle" class="number">HPI Item #10620</td><td width="10"></td>
    </tr>
    </table>
    <table width="925" border="0">
    <tr>
    <td width="16"> </td>
    <td width="549"><img src="http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-1md.jpg" width="549" height="429" id="mainPic"/></td>
    <td width="35"> </td>
    <td width="1559"><p><img src="http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-1sm.jpg" width="116" height="85" onclick="changePic('Image-1')"/> <img src="http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-2sm.jpg" width="116" height="85" onclick="changePic('Image-2')"/></p>
    <p><img src="http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-3sm.jpg" width="116" height="85" onclick="changePic('Image-3')"/> <img src="http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-4sm.jpg" width="116" height="85" onclick="changePic('Image-4')"/></p>
    <p><img src="http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-5sm.jpg" width="116" height="85" onclick="changePic('Image-5')"/> <img src="http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-6sm.jpg" width="116" height="85" onclick="changePic('Image-6')"/></p>
    <p><img src="http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-7sm.jpg" width="116" height="85" onclick="changePic('Image-7')"/> <img src="http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-8sm.jpg" width="116" height="85" onclick="changePic('Image-8')"/></p>
    <p class="text">Click to enlarge picture</p></td>
    </tr>
    </table>
    <table width="928" border="0">
    <tr>
    <td class="description"><h2>Description</h2>
    <p>HPI Racing is proud to present the Baja 5T, a <strong>ready-to-run</strong> (RTR) 1/5th scale off-road truck that expands on the award-winning Baja  5B family. With the Baja 5T you get aggressive desert truck looks, high  performance new features, and compatibility with many of the existing  Baja 5B spare parts and option parts, wrapped up in a RTR package that  gets you running in just a few minutes.</p>
    <p>Includes: HPI Baja 5T RTR Truck with 1.6 cu in gasoline engine, 27MHz FM Radio, two water resistant servos, 3.4oz (100cc) 2-cycle oil, 2oz (60cc) shock oil, 1oz (30cc) diff oil, 1oz (30cc) air filter oil, tube of gear grease, 3000mAh receiver pack, wall charger, body with wing, extra air filter, wrenches, decal sheet and illustrated instruction manual.</p></td>
    </tr>
    </table>
    <table width="928" border="0">
    <tr>
    <td width="290"> </td>
    <td width="17"> </td>
    <td width="292"> </td>
    <td width="17"> </td>
    <td width="290"> </td>
    </tr>
    <tr>
    <td align="center"><span class="features">Features:</span></td>
    <td align="center"> </td>
    <td align="center"><span class="features">Specifications:</span></td>
    <td align="center"> </td>
    <td align="center"><span class="features">Required:</span></td>
    </tr>
    <tr>
    <td class="featurebackground"><ul>
    <li>Ventilated Disc Brake System</li>
    <li>Heavy Duty Rear Dogbones</li>
    <li>Moulded Nylon Rear Spoiler</li>
    <li>Aluminum Alloy Diff Case</li>
    <li>Dirt Guards</li>
    <li>Full Metal Ball Bearings</li>
    <li>Front &amp; Rear Sway Bars</li>
    <li>Modified Rear Shock Tower</li>
    <li>Heavy Duty Inner Foam</li>
    <li>Revised Gearing</li>
    <li>High Flow Muffler</li>
    <li>SFL-10MG2 Metal Gear Steering Servo</li>
    <li>Heavy Duty Beadlocks</li>
    <li>8000 RPM Clutch</li>
    <li>Anodized Aluminum Parts</li>
    <li>Double Wishbone Suspension</li>
    <li>Adjustable Suspension</li>
    <li>Baja 5T-1 Truck Body</li>
    <li>Extended Roll Cage</li>
    <li>Outlaw Truck Wheels / Desert Buster Tires</li>
    <li>Fuelie 26 Engine (26cc)</li>
    <li>All Metal Transmission Gears</li>
    <li>High Quality Radio Gear</li>
    </ul>
    </td>
    <td> </td>
    <td class="featurebackground"><ul>
    <li>Drive System: 2WD viscous Diff</li>
    <li>Tires (front &amp; rear): Truck Wheels / Desert Buster</li>
    </ul>
    </td>
    <td> </td>
    <td class="featurebackground">
    <ul>
    <li>Unleaded Gasoline: 87-93 octane, mix gasoline with two cycle oil at 25:1 ratio</li>
    <li>Transmitter Batteries: 8x AA</li>
    <li>Screwdriver: Flat blade, 3/16&quot; (4-5mm) wide</li>
    </ul>
    </td>
    </tr>
    </table>
    <table width="928" border="0">
    <tr>
    <td> </td>
    </tr>
    <tr>
    <td class="policy"><h2>Payment Method </h2>
    <p>We accept Visa, Mastercard and Discover Card and PayPal. If your unable to send payment using these methods please contact us at [email protected]. All payments need to be sent within 5 days.
    </p></td>
    </tr>
    <tr>
    <td> </td>
    </tr>
    <tr>
    <td class="policy"><h2>Shipping &amp; Handling </h2>
    <p>All our orders are shipped out within 72 business hours unless stated. We ship everything out using the best packaging material to insure safe deliveries using shipping companies such as USPS Postal Office and UPS services (Shipping times will vary depending on the service you choose). Tracking information will be automatically sent via email after an order has been shipped out. We Definitely Combine Shipping for multiple items, if for some reason our eBay checkout isn&rsquo;t combining your items please wait for a custom eBay invoice which will have your order combined into one, reducing the shipping price. For international customers, please note: &quot;that Import duties, taxes, and charges are not  included in the item price or shipping charges. These charges are the buyer's  responsibility. Check with your country's customs office to find out what these  additional costs will be before you bid or buy&quot;.</p>
    <p>Please Note for International Customers Only: Due to the large size of this item there are several countries that have a size limitation which we are not able to ship to, if by any means your order goes through to us and it falls in the country size restrictions and your order cannot be shipped out we have the right to cancel your order (before cancelling the order we will contact the customer via email).</p></td>
    </tr>
    <tr>
    <td> </td>
    </tr>
    <tr>
    <td class="policy"><h2>Insurance</h2>
    <p>We offer insurance which is optional during checkout for both Domestic and International customers which will cover the full amount paid by customer, if insurance isn't purchased we are not responsible for packages that are missing during transit. If you use the USPS First Class Mail International shipping service please allow 10 - 25 business days for the delivery of your package.</p></td>
    </tr>
    <tr>
    <td> </td>
    </tr>
    <tr>
    <td class="policy"><h2>Returns</h2>
    <p>We want you to be completely happy with your purchases. So we do everything we can to assure you get the exact merchandise you order, delivered on time. If by any means your unsatisfied with your purchase we will be happy to accept returns for an exchange or a refund within 14 days. If shipping the item back, customer is responsible for freight charges to us. We offer refunds &amp; exchanges if your not satisfied with your purchase. The returned product needs to be in the same condition it was shipped out in, unused and in it&rsquo;s original packaging. If by any chance there has been an issue with your order and you want to request a return please email us at [email protected].</p></td>
    </tr>
    </table>
    </body>
    </html>
    <script type="text/javascript">
    if(document.images) {
    tempImage = new Image();
    tempImage.src = "http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-1md.jpg";
    tempImage.src = "http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-2md.jpg";
    tempImage.src = "http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-3md.jpg";
    tempImage.src = "http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-4md.jpg";
    tempImage.src = "http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-5md.jpg";
    tempImage.src = "http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-6md.jpg";
    tempImage.src = "http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-7md.jpg";
    tempImage.src = "http://www.ehobbyplanet.com/Items/RC/HPI/10620/Image-8md.jpg";
    function changePic(newName) {
    newPicURL = "http://www.ehobbyplanet.com/Items/RC/HPI/10620/"+newName+"md.jpg";
    mainPic.src = newPicURL;
    </script>
    That's the best solution I can offer.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • Pivot table not rendered correctly in Internet Explorer

    Hi
    We have used Pivot table in the fusion development. The pivot table renderes properly in FireFox, but rendering in IE it gets distored. Is there any know issue with IE, Please me know ?
    TIA
    Anand

    Are you sure the problem is the size of the icons? Beginning with version 6.0.2900.2190, Microsoft Internet Explorer stopped displaying the Web Server /mc-icons GIFs. This regression was apparently a side effect of Microsoft's attempts to fix IE's handling of malicious image files.
    Apart from not using the buggy versions of IE, I'm not aware of a simple fix. I suspect a future Web Server 6.1 service pack will include a work around for the IE bug, but probably not until 6.1SP7.
    I've added tweaked icons to my blog at http://blogs.sun.com/elving?entry=directory_listing_icons_and_ie that IE will display properly. You may wish to copy these into your ns-icons directory.

  • Appearing/Opening in Internet Explorer

    I have created my website in Dreamweaver CS4, it appears and works when it is opened in Firefox but not in Internet Explorer or any other brower like Safari. Can someone please help me sort this out, bear in mind im no technical wizard and created my site using design view. the web address is www.tomlevesleydesigns.co.uk if that helps. Thanks.

    Tom Levesley wrote:
    how do i know which page of the website th fault is on, i dont think correcting these will sove the problem but i will obviusly correct them when i figure out which page they're on and find them all
    The fault is on the page you provided in the link.  If you based other pages on that code then all will have to be corrected.  Correcting these will solve your display issues because your code is invalid starting at line 6.  So anything after line 6 (the link code) may not display correctly in any browser.

  • Layers don't appear properly inside table in Internet Explorer, but are fine in Firefox and Safari

    How can I get layers that are inside tables that are
    inside another layer to appear properly in Internet Explorer. It
    works fine in Firefox and Safari on Mac and PC? The layers that are
    causing the problems contain a table with an image and a caption,
    so 2 cells. Then the layers are within a larger table that is
    within a layer. I don't use IE (cause it is the bain of my
    existence) but for a client they may want it to look good on all
    browsers, even if it is IE 6 on a PC, maybe the browser version is
    too old and I shouldn't worry about it? I know IE is not compliant
    with web standards so is this the problem or is there a way to fix
    the problem so it will look good in all the browers? The URL is
    http://uweb.txstate.edu/~ts20/scevents/spec-coll-events.html
    so if anyone could look at it IE and firefox and see how I could
    fix it, this would be very appreciated!
    Much needed help. Thanks for any input.

    >>I knwow IE is not compliant with web standards
    That is too broadly stated to be credible. Certainly IE6 has
    its problems
    but is highly compliant with most web standards. To be an
    effective
    designer/developer one must have a working knowledge of IE's
    deficiencies,
    not just write it off as non-compliant. After all, it is
    still used by some
    70% or web users (based on W3C Schools data.)
    Please post a link to your site.
    Walt
    "starryeyestara" <[email protected]> wrote
    in message
    news:eq3jc0$7cs$[email protected]..
    >
    How can I get layers that are inside tables that are
    inside
    > another
    > layer to appear properly in Internet Explorer. It works
    fine in Firefox
    > and
    > Safari on Mac and PC? The layers that are causing the
    problems contain a
    > table
    > with an image and a caption, so 2 cells. Then the layers
    are within a
    > larger
    > table that is within a layer. I don't use IE but for a
    client they may
    > want it
    > to loog good on all browsers, even if it is IE 6 on a
    PC. I knwow IE is
    > not
    > compliant with web standards so is this the problem or
    is there a way to
    > fix
    > the problem so it will look good in all the browers?
    > Much needed help. Thanks for any input.
    >

  • Video slideshow not working in Internet Explorer

    Hello, my website has a video slideshow on the homepage is not appearing properly in Internet Explorer:
    www.incontextvideos.com
    It appears fine in Chrome on my computer, but I checked with a friend and in both Chrome and IE it is not displaying.
    Is this a firewall issue? What can I do?
    Many thanks,
    Raja

    I tried to check with IE and I can see the images etc , please provide the version details as well information on OS.
    Thanks,
    Sanjit

  • Two Separate Problems -  1) Some website elements missing in Internet Explorer and 2) Site manager page Locks up

    1) I have two forms created in FormsCentral embedded on my website www.videoaldeco.com . They do not appear in Internet Explorer. They work in Firefox and Safari on my iPhone. However, the problem only occurs on this computer. I tried another PC and the forms appear fine in Internet Explorer.
    2) When I go into Site Admin Console page from Muse, Internet Explorer locks up almost every time. Only Windows Task Mngr can shut it down. Then it wants to recover page. Recovering page only locks up again.

    Hi
    Answering the questions :
    1) I am not able to replicate as it works on my end , form loads fine on IE. Please let me know the IE version you are using.
    2) I don't see the same issue with site manager , please check the browser plugins and try to disable all and then check.
    Thanks,
    Sanjit

  • Internet Explorer 11 not available in WSUS/SCCM 2012

    Hi all,
    do you have any idea why Internet Explorer 11 is not available in WSUS or SCCM 2012.
    I would like to deploy it as an update and not as an application.
    I have IE 10 listed and also Cumulative Updates for IE 11.
    Is it not yet released for SCCM Deployment?
    Thank you
    Best regards

    some history..
    -=-=-
    http://support.microsoft.com/kb/2921911
    Internet Explorer 10 for Windows 7 and Windows Server 2008 R2 (KB2718695) Tuesday, October 8, 2013, ◦Metadata has changed.
    [no note of change to release channel, but I think this is when it appeared in WSUS]
    Internet Explorer 10 for Windows 7 and Windows Server 2008 R2 (KB2718695) Tuesday, March 26, 2013, Localization text changed.
    Internet Explorer 10 for Windows 7 and Windows Server 2008 R2 (KB2718695) Tuesday, March 12, 2013, Deployment: Catalog,  Classification: High Priority, Non-Security, Update Rollups
    Internet Explorer 10 for Windows 7 and Windows Server 2008 R2 (KB2718695) Tuesday, March 12, 2013, Deployment: Important/Automatic Updates,  Classification: High Priority, Non-Security, Update Rollups
    Internet Explorer 10 for Windows 7 and Windows Server 2008 R2 (KB2718695) Tuesday, March 12, 2013, Deployment: Optional/Automatic Updates,  Classification: Updates, Non-Security
    Internet Explorer 10 for Windows 7 and Windows Server 2008 R2 (KB2718695) Tuesday, March 12, 2013, Deployment: Optional/Automatic Updates and Catalog,  Classification: Updates, Non-Security
    -=-=-
    http://support.microsoft.com/kb/2662694
    Windows Internet Explorer 9 for Windows 7, Windows Server 2008 R2, Windows Server 2008 and Windows Vista (KB982861) Tuesday, June 21, 2011, Metadata changed to offer to WSUS channel.
    Internet Explorer 9 for Windows 7, Windows Server 2008 R2, Windows Server 2008 and Windows Vista (KB982861) Monday, March 28, 2011, Deployment: Windows Update, Microsoft Update, and Important/Automatic Updates,  Classification: High Priority, Non-Security,
    Update Rollups
    Internet Explorer 9 for Windows 7, Windows Server 2008 R2, Windows Server 2008 and Windows Vista (KB982861) Monday, March 28, 2011, Deployment: Windows Update, Microsoft Update, and Optional Installation,  Classification: Non-Security, Updates
    Internet Explorer 9 for Windows 7, Windows Server 2008 R2, Windows Server 2008 and Windows Vista (KB982861) Monday, March 28, 2011, Deployment: Catalog,  Classification: Non-Security, Update Rollups
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Solutionbank requires internet explorer v6 or higher

    Hi,
    I recently bought a new computer with Windows 8.1 which uses Internet Explorer 11 and have been unable to use a CD-ROM (supplied in a textbook I bought) livetext program on which there are stored answers. I desperately need to use
    this as I have exams in about 2 months and am severely stressed so this is not helping at all since this is the only way I can check that I am doing my work correctly.
    On my old computer with Windows Vista I was able to open the program successfully but with this version I am unable to. I have tried Mozilla, Firefox and Google Chrome but they too do not work and anyway I prefer to use Internet Explorer.
    The program is an "Application (.exe)". Whenever I press the link to the livetext program (known as solutionbank) a message appears
    "solutionbank requires internet explorer v6 or higher".
    I have checked the Microsoft forums for help but no one seems to know anything about the issue.
    Thanks

    Hi,
    probably, this application software is performing a check of the browser version (using some custom/internal method known only to the software developer) and it doesn't like what IE11 has to say.
    Check the website or support information for this software, they may have a patch or update for it, to allow it to correctly recognise IE11.
    Because it's an application, and not a website, I can't see a way to get IE11 to tell a version lie, (although you might be able to do so if you try modifying the UA string in your browser).
    http://blogs.msdn.com/b/ieinternals/archive/2014/02/19/internet-explorer-and-everybody-else-version-lies-for-compatibility.aspx
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Interactive Report wide Column Sorting hangs in Internet Explorer

    I have an application that contains an interactive report. The Column Sorting and Filtering functions work fine in Firefox. However, if I try to sort a wide (110 byte - it contains a hyperlink) column in Internet Explorer, APEX produces the 'loading data' image and then hangs. Even a sort of a narrow (3 byte) column is noticeably slower in Internet Explorer than in Firefox.
    We are running APEX 3.1.1 on Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production with the Partitioning, OLAP, Data Mining and Real Application Testing options

    Hello,
    I answer you over your post.
    Joe Bertram wrote:
    Hi,
    That's an interesting issue. What kind of images are these? Are they the default images installed or are they your custom set of images?The images are png files included as they were icons into the table.
    >
    You say the images disappear when you sort the report. Does it happen when you sort on demand in the dashboard or when you sort it in the report itself? Or both?Only when sort from the dashboard. From the report itself, the answers works fine.
    >
    What are your environment details?Server:
    OBI 10.1.3.4.1.090414.1900
    Windows 2003 server
    JDK 1.6.0.17
    Thin Client:
    Internet explorer 8
    >
    Thanks for the extra info.
    Best regards,
    -JoeIt happens also in other two environments (Development and Pre-production) with the same SW architecture.
    Thanks for your time.

  • Page built with a table does not display well in Internet Explorer.

    In Chrome and Safari it appears correctly (items are left justified in each column) while in Internet Explorer all columns are centered. Website is www.eventpowerli.com and it is the home page where we have the issue. I am new to building websites so please bear with me on this question: -) Let me know if you need addnl info. From what I have seen thus far, IE is a real problem child for more than one reason

    Honestly do not use tables for your site layouts. There is a variety of box model issues and more with IE, especially with using tables. And it is really bad form to design that way anyway.
    Tablless web design using CSS is the way it should be done and if you conform to web standards and CSS standards and best practises you will have less issues.
    http://girlswhogeek.com/tutorials/2006/create-a-tableless-css-layout Just as a basic example.

  • Some tables show up in Internet Explorer and not on Modzilla

    I just noticed that some of the cats on the Our Cats page of my website,
    www.freedomfarm.net, show up on Internet Explorer, but not on Modzilla FireFox.  They are actually listed as a table on the page with a picture and text.   I will confess that I cheated.  I copied the table code from another website that I liked.  But since it works on IE and some of them work on Modzilla, I don't think that is the problem...could be wrong though.   If anyone has any ideas what might be causing this, I sure would appreciate the help.  Thanks!

    Raine770 wrote:
    I just noticed that some of the cats on the Our Cats page of my website,
    www.freedomfarm.net, show up on Internet Explorer, but not on Modzilla FireFox.  They are actually listed as a table on the page with a picture and text.   I will confess that I cheated.  I copied the table code from another website that I liked.  But since it works on IE and some of them work on Modzilla, I don't think that is the problem...could be wrong though.   If anyone has any ideas what might be causing this, I sure would appreciate the help.  Thanks!
    There is obviously an inbalance with your 'comment' tags <!--------------------->. Go into your pages code and delete everyone before and after the <hr> tags and the missing cats will appear. I don' t have time to figure out exactly which are casuing the issue, anyway other than mark the end and beginning of a section which the <hr> tag already does for you they are'nt required.
    <!------------------------------------------------------------------------------------->
        <hr align="center" size="5" color="#336699"/>
        <p> </p>
      <!------------------------------------------------------------------------------------->

  • Tables running long in Internet Explorer

    Hey guys, I'm new here, and still somewhat of a noob when it
    comes to html and web design so be easy on me.
    One of my new projects is creditcardrewardzone.com, which I
    thought was looking pretty good until someone told me that it was
    completely screwed up when they looked at it in Internet Explorer
    on their windows machine.
    I myself work on a mac and check it with safari, firefox, and
    IE, and everything looks fine, but for some reason in IE on
    windows, the tables run really long to the point where the site
    isn't functional.
    If you go to the site and click on cash cards, you can see
    what I mean. Can anybody look at my code and see if there's
    something I'm doing wrong?
    Thanks a lot, I look forward to staying at the forum and
    probably asking a lot more questions!
    Josh

    I am not seeing the information on this page:
    http://www.creditcardrewardzone.com/CashRewardCards.html
    in IE6.
    Try using a full doc type - at the moment you are not using
    one - which is
    placing IE6 into quirks mode... that may correct your
    problem.
    I would also consider adding some left padding to your
    content area (beside
    the left side bar on the right side of it) because the text
    sits right up
    against the sidebar in all browsers I've checked.
    Doctypes:
    http://www.alistapart.com/articles/doctype/
    This should work:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    http://www.w3.org/TR/html4/loose.dtd">
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au
    Spry Widget Examples
    http://www.dreamweaverresources.com/spry-widgets/
    ~ Forum Posting Guidelines ~
    http://www.adobe.com/support/forums/guidelines.html
    CSS Tutorials for Dreamweaver:
    http://www.adobe.com/devnet/dreamweaver/css.html
    "joshmv" <[email protected]> wrote in
    message
    news:f64at9$gg8$[email protected]..
    > Hey guys, I'm new here, and still somewhat of a noob
    when it comes to html
    > and
    > web design so be easy on me.
    >
    > One of my new projects is creditcardrewardzone.com,
    which I thought was
    > looking pretty good until someone told me that it was
    completely screwed
    > up
    > when they looked at it in Internet Explorer on their
    windows machine.
    >
    > I myself work on a mac and check it with safari,
    firefox, and IE, and
    > everything looks fine, but for some reason in IE on
    windows, the tables
    > run
    > really long to the point where the site isn't
    functional.
    >
    > If you go to the site and click on cash cards, you can
    see what I mean.
    > Can
    > anybody look at my code and see if there's something I'm
    doing wrong?
    >
    > Thanks a lot, I look forward to staying at the forum and
    probably asking a
    > lot
    > more questions!
    >
    > Josh
    >

  • Mapquest sign in box does not appear in Firefox but does in Internet Explorer. Why? Have disabled add ons but no luck.

    The sign in box does not show up on Mapquest when I use Firefox. If I use Internet Explorer, the sign in box appears. I disabled the Firefox add-ons thinking there might be a conflict but no luck. Mapquest support is at a dead end, too, especially with it working in IE but not in Firefox. Suggestions?

    Can you post a link to that login page or is this a pop-up window?

Maybe you are looking for

  • Excel import rounding up decimal values

    In my excel file I have a column that contains dollars and cents (e.g. 49.95). When I run the import the values in this column are rounded up to the next integer (e.g. 49.95 is rounded up to 50). Is this a bug or am I doing something wrong? Thanks, P

  • Recording video on 24 fps?

    I wish to record video in 24 fps - dearly Is there any way to by pass the phones inbuilt regulations (30 and 60 fps)? For example, I use an app (vintage 8mm video camera), which makes my phone record, or at least appear to record, in 15 fps, so maybe

  • What is line item display? Explain in detail.

    what is line item display? Explain in detail.

  • Does XI support PLSQL Functions?

    Hi... Generally we use Stored Procedure at the Receiver end with JDBC Adapter. I wanted to know if XI supports PLSQL Function? If so, can anyone please tell me the structure to be used. Is it the same one as for Procedure??

  • How do I reset Firefox when I'm blocked?

    I have the Ukash malware virus on my Mac, which blocks Firefox. I clicked on troubleshooting. Then pressed the reset Firefox button, but it wouldn't work. I can't even get the Firefox toolbar showing unless I access Firefox from Safari. I am writing