Quick website questions

Hello, i am creating my website in a free domain for practice before i do the real thing. Anyways my “theme” in wordpress is in Java (i am pretty sure that is the default format), in header.php the code for my banner is:

<div id=“header”>
<div id=“headleft”>
<a href=“<?php echo get_option(‘home’); ?>/” title=“<?php bloginfo(‘name’); ?>”><img src=“<?php bloginfo(‘template_url’); ?>/images/logo.jpg” alt=“<?php bloginfo(‘name’); ?>” /></a>
</div>


there is no default
dimensions[COLOR=Red][COLOR=DimGray] for my banner and i would like to change its placing so i have 2 questions:

1. How do i find the dimensions on my web page of where i want to place my banner.

2. Where do i add these [/COLOR][/COLOR]dimensions[COLOR=Red][COLOR=DimGray][COLOR=DarkGreen] in the code?

[SIZE=1][COLOR=DimGray]Please excuse me if my grammar and/or spelling is incorrect :nono:.

Thanks Vendetta12
[/COLOR][/SIZE][/COLOR][/COLOR] [/COLOR]

You could try using CSS. Something like


#header {
	height: 350px;
	background: url(images/myheader.gif) repeat-x;
}