DRAFT: This module has unpublished changes.
Left-Navigation

Some of you have a really dark website and need to change the color of the words in the left-navigation bar.  You have to INSERT a whole new modular code to change that color.  You can also change size and font there too while you are it!  

 

Find the part that says “.title” in your CSS and add in all of this: 

}

.title{

  display:block;

}

.navigation_leftnav a  {

color:#000000;

font-family:Georgia, Helvetica, Arial, sans-serif;

font-size:12px;

font-weight:bold;  

}

The code that you see above adds in black, bold words at size 12 font.  For different colors, etc, insert the HTML code of your liking.

 

 

REMINDER: DO NOT REMOVE BRACKETS OR FORGET THE SEMI-COLON AT END OF LINE.

DRAFT: This module has unpublished changes.