I have this website, which is still under development, and I am wondering why, when I go to Termékek it displays them all under each other, when in firefox, and opera it doesn't.
here is the css
*{
margin: 0;
padding: 0;
}
*{
text-decoration: none;
}
.wrapper {
width: 800px;
height: auto;
border: 1px solid;
margin: 10px auto 0 auto;
}
.header {
width: 800px;
height: 150px;
background-image:url('Images/header.png');
background-repeat: no-repeat;
}
.navbar {
width: 800px;
height: 25px;
background-image:url('Images/button.png');
background-repeat: repeat-x;
}
.button a {
float: left;
width: 200px;
height: 25px;
line-height: 20px;
font-family: Arial;
font-size: 13px;
color: #000;
font-weight: bold;
text-align: center;
}
.button a:hover {
float: left;
width: 200px;
height: 25px;
line-height: 20px;
font-family: Arial;
font-size: 13px;
color: #fff;
font-weight: bold;
text-align: center;
background-image:url('Images/button_down.png');
background-repeat: repeat-x;
}
.body {
width: 800px;
height: auto;
font-family: Arial;
font-size: 11px;
color: #000;
background: url('Images/backgTrans.png');
}
div.textbody {
padding: 10px;
color: #000000;
font-weight: bold;
}
div.textbody h1 {
float: left;
}
div.textbody p{
font-size: 15px;
font-weight:bold;
color:#000000;
}
div.textbody img{
padding: 5px;
}
.leftDiv{
position: relative;
margin-right: 10px;
display: inline;
}
.productsDiv {
display: inline-block;
padding: 20px;
font-size: 14px;
}
.important h1{
}
Also another quick question when I view it in firefox all of the elements are at the same height (the top of the pictures are in line), but when I view it in opera one of them is one <br /> higher. Is there a way to fix this?
Thanks for any help.