The logo is not a background, it is an image that is called inline. Background styles will not affect it. In your case, you can give #logoWrapper a text-align: center; to center its content.
Code:
#logo { /* !!!!!!!! LOGO TOP LEFT !!!!!!*/
float:center; <-no such thing - left/right only - delete this line
margin-top: 0.1em;
}
#logoWrapper{
margin-top:1.5em;
/*logo en haut - pour l'instant ce sont les Plumeria*/
background-image:url(../images/Plumeria-corner.png);
background-repeat:no-repeat;
/*background-color: #ffffff;*/
height:170px;
background-position:right;
text-align:center;
}
Backgrounds can display once, or repeated uniformly in one or both directions. If you want just a few of them, you need to make a new bg image that looks like what you want.