Why doesn't this work in IE7? <html> <head> <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>test</title> <style type="text/css"> cs{color:#FF0000; font-weight:bold; font-family:Trebuchet MS; font-size:10pt; text-align:center} cs2{color:#CC0000; font-family:Trebuchet MS; font-size:10pt; text-align:center} </style> </head> <body> <cs>FREE SHIPPING</cs><br> <cs2>Prices Reduced!!!</cs2> </body> </html>
The code was generated by Frontpage (another fine MS product). I'll see if your suggestion helps. Thanks for the reply.
do this <html> <head> <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>test</title> <style type="text/css"> .cs{color:#FF0000; font-weight:bold; font-family:Trebuchet MS; font-size:10pt; text-align:center} .cs2{color:#CC0000; font-family:Trebuchet MS; font-size:10pt; text-align:center} </style> </head> <body> <div class="cs">FREE SHIPPING</div><br> <div class="cs2">Prices Reduced!!!</div> </body> </html> Code (markup):