I have below in the body
<header>
<div class="header"><img src="Pics/imageleft.jpg" alt="imageleft" class="alignleft" width="133px" height="100px"><H1>Titel<span class="nemo">Text</span></H1><img src="Pics/imgright.jpg" alt="imgright" class="alignright" width="133px" height="100px"></div>
</header>
and i use this css
.alignleft {
float:left;
}
.alignright {
float:right;
}
H1 {
text-align:center;
}
The problem I'm still having is that the right picture go's to the second line.
Also i still have a white bar above my header (background header is yellow)
The CSS for the header:
header {
padding-top:0px;
margin-top: 0px;
height: 100px;
background-color: #CCFF33;
color: #FF0000;
}
Hope you people can help me.