Dreamweaver centering background

0

How do you center the background image on Dreamweaver CS5?

Luke

Posted 2011-02-15T19:14:21.560

Reputation: 465

Answers

2

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

background-repeat: repeat-y;

background-position: center;

Andee

Posted 2011-02-15T19:14:21.560

Reputation: 559

1

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

background-position:center;

background: url(name.jpg) center;

Magnum

Posted 2011-02-15T19:14:21.560

Reputation: 111