img positioning in header of DW example file
I'm working with the DW HTML One column liquid, centered, header and footer example file.
In the header there is a logo on the far left. My question is probably super simple: how do I move the logo to the far right?
The relevant code is
<div class="container">
<div class="header"><a href="#"><img src="" alt="Insert Logo Here" name="Insert_logo" width="20%" height="90" id="Insert_logo" style="background: #8090AB; display:block;" /></a>
<!-- end .header --></div>
.container {
width: 80%;
max-width: 1260px;
min-width: 780px;/
background: #FFF;
margin: 0 auto;
}
.header {
background: #6F7D94;
}
I'm guessing that the logo is displaying far left because there is no positioning on it but I can't figure out how(and where) to specify where to position the logo in the css.
Thanks for any help.

