DRAFT: This module has unpublished changes.
Title

Despite many efforts, students have not been able to change the color of the title.  We can change size and font, but not color.  Changing the size so that your title is more visible is highly recommended.  You simply need to add in code here.  You can also change the font to match the rest of your site or do something more fancy.  Here is the default code that we will be adding to:

}
.title{
display:block;
}

 

Here is the code that is used for this site:

}
.title{
display:block;
font-family:Georgia,Arial,sans-serif;
font-size:24px;
background-color:#FFFFFF;
}

Notice that the font-family and font-size lines have been added in.  Experiment and play around with these additions until you reach something that you like.

 

More Options for the Background Color

For many of you, the dark gray will not match your color scheme or it doesn't show up as well on dark backgrounds.  You can change the color of the box that wraps the title words by adding the line of code that says background color and providing an HTML color code.  

 

If you want a border on that box and want to experiment with more coding, go back to the page about borders and see if you can figure out how to add code for a border including setting its thickness and color.

DRAFT: This module has unpublished changes.