PDA

View Full Version : Language showing up in indonesian



hiddenbrooknb
29 Jul 2009, 11:59 AM
I made this code by hand in edit pad lite but when I go to preview it in my browser window a little windows pops up saying translate to English. I will post the code for my website below and could someone please tell me whats wrong with this:

Heres the HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Frankies Pizza Online Web Portal</title>
<link rel="stylesheet" href="menu_style.css" type="text/css" />
<style type="text/css">
.style1 {
text-align: center;
}
body {
background-image: url(images/img02.jpg);
}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /></head>
<body>

<div id="maincontent" >
<div id="heading" class="style1">
<img src="images/logo.gif" alt="Frankies Pizza Logo" height="350" width="800"/>
</div>

<div id="navbar">
<br>
<br>
<div class="menu">
<ul>
<li><a href="#" >Home</a></li>
<li><a href="#" id="current">Products</a>
<ul>
<li><a href="#">Drop Down CSS Menus</a></li>
<li><a href="#">Horizontal CSS Menus</a></li>
<li><a href="#">Vertical CSS Menus</a></li>
<li><a href="#">Dreamweaver Menus</a></li>
</ul>
</li>
<li><a href="/faq.php">FAQ</a>
<ul>
<li><a href="#">Drop Down CSS Menus</a></li>
<li><a href="#">Horizontal CSS Menus</a></li>
<li><a href="#">Vertical CSS Menus</a></li>
<li><a href="#">Dreamweaver Menus</a></li>
</ul>
</li>
<li><a href="/contact/contact.php">Contact</a></li>
</ul>
</div>
</div>
<p>&nbsp;</p>
</div>
</body>
</html>

Heres the CSS:

.menu{
border:none;
border:0px;
margin:0px;
padding:0px;
font: 67.5% "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
font-size:14px;
font-weight:bold;
}
.menu ul{
background:#880000;
height:35px;
list-style:none;
margin:0;
padding:0;
}
.menu li{
float:left;
padding:0px;
}
.menu li a{
background: #880000 url("images/seperator.gif") bottom right no-repeat;
color:#cccccc;
display:block;
font-weight:normal;
line-height:35px;
margin:0px;
padding:0px 25px;
text-align:center;
text-decoration:none;
}
.menu li a:hover, .menu ul li:hover a{
background: #500000 url("images/hover.gif") bottom center no-repeat;
color:#500000;
text-decoration:none;
}
.menu li ul{
background:#880000;
display:none;
height:auto;
padding:0px;
margin:0px;
border:0px;
position:absolute;
width:225px;
z-index:200;
/*top:1em;
/*left:0;*/
}
.menu li:hover ul{
display:block;

}
.menu li li {
background:url('images/sub_sep.gif') bottom left no-repeat;
display:block;
float:none;
margin:0px;
padding:0px;
width:225px;
}
.menu li:hover li a{
background:none;

}
.menu li ul a{
display:block;
height:35px;
font-size:12px;
font-style:normal;
margin:0px;
padding:0px 10px 0px 15px;
text-align:left;
}
.menu li ul a:hover, .menu li ul li:hover a{
background:#2580a2 url('images/hover_sub.gif') center left no-repeat;
border:0px;
color:#ffffff;
text-decoration:none;
}
.menu p{
clear:left;
}




#navbar {
margin-left: auto;
margin-right: auto;
width: 900px;
}

#heading {
margin-left:400;
;
}

#maincontent {
width: 900px;
background-color: #600000;
margin-left:auto;
margin-right:auto;
font-family: Verdana, Geneva, sans-serif;
color: #FFF;
border-top-width: 3px;
border-right-width: 3px;
border-bottom-width: 3px;
border-left-width: 3px;
border-top-color: #808080;
border-right-color: #808080;
border-bottom-color: #808080;
border-left-color: #808080;
}

body {background-color: #400000 ;}#schedule {
margin: 5px;
color: #FFF;
}


Thanks for your help, I just can seem to fins where this is happening.