Im working on my first web page and I need a little help!
Im good with css, but not with html. Im not saying html is hard, I just dont have enough practice.
So here it is:
Because Im not good at html, Im using table for header,footer and body. Example:
the I call this in css. Example:
So I create another table with id="logo" and in css #logo{} and I get my logo, but problem is that logo is not on header. It is above or under. Depends where I write "logo" code in HTML. (under or above "header" code). If you know what I mean!
Thanks!
Im good with css, but not with html. Im not saying html is hard, I just dont have enough practice.
So here it is:
Because Im not good at html, Im using table for header,footer and body. Example:
Code:
<table id="top-header" width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td> </td>
</tr>
</table>
the I call this in css. Example:
Code:
#top-header{
background-image:url(topheader.png);
height: 76px;
background-repeat: repeat-x;
background-position: center;
background-position: top;
}
So I create another table with id="logo" and in css #logo{} and I get my logo, but problem is that logo is not on header. It is above or under. Depends where I write "logo" code in HTML. (under or above "header" code). If you know what I mean!
Thanks!