DRAFT: This module has unpublished changes.

Centering a Banner Code

 

Center your Banner:

The following line of code will center your banner at the top, so you can use any size image! You can also put other code in between such as width: 900px; in between the brackets {} to change the size of the picture.

 

#site_headerimage img {
    margin: 0px auto;
}
 
 
 
Putting !important will override any other previous values for a specific field.
 
DRAFT: This module has unpublished changes.