I have seen that in IE it works without problem navigation.
In Mozilla is moved to the right.
How can I move items to the left?
Need help
Code for navigation is the following:
PHP Code:<!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" xml:lang="en" lang="en">
<head>
<title></title>
<style type="text/css">
/*<![CDATA[*/
#navigation ul {
list-style:none;
margin:0px 0px 25px 0px;
}
#navigation li {
padding:3px 0px;
border-bottom:1px solid #e5e5e5;
}
#navigation li a {
color:#666;
}
#navigation img {
margin-right:8px;
}
/*]]>*/
</style>
</head>
<body>
<div id="navigation">
<h6>Main navigation</h6>
<ul>
<li><img alt="Product1" src="image1.gif"><a href="">Product1</a></li>
<li><img alt="Product2" src="image2.gif"><a href="">Product2</a></li>
<li><img alt="Product3" src="image3.gif"><a href="">IProduct3</a></li>
</ul>
</div>
</body>


Reply With Quote
Bookmarks