How do you center the background image on dreamweaver cs5?

link|improve this question

65% accept rate
feedback

2 Answers

If you just want to center it horizontally, in the css for the element

background-repeat: repeat-y;

background-position: center;

link|improve this answer
feedback

You can use either depending on how you like to markup:

background-position:center;

background: url(name.jpg) center;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.