DRAFT: This module has unpublished changes.

CSS for Digication

 

These little code snippets will help make your page look great!

 

 

Center your Banner:

1. 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;
}
 
 
Make Navigation Bar Smaller:
2. The next portion of code will make the navigation bar on the left smaller. You can change the pixel number to the one you want. Test different values.
 
.span-7 {
    width: 150px !important;
}
Putting !important will override any other previous values for a specific field.
 
DRAFT: This module has unpublished changes.