DRAFT: This module has unpublished changes.

At the very, very top of your ePortfolio, you will see Home People, Logout, etc.  Here is that part of the code:

}
#site_topnav ul li a {
color:#000000;
}

Once you begin adding backgrounds and changing the color of your site, you cannot see the words at the very top anymore.  Make the necessary changes.  Use HTML color code to change the standard #000000.  Remember to use "#" before the code and add a semi-colon to the end of each line.

 

You can insert code to change the size and font just as you did with the body of your site.  Here is the full code for this website (everything that has been added is highlighted in green):

}

#site_topnav ul li a {
color:#FFFFFF;
font family:Georgia,Arial,Helvertica,sans-serif;
font-size:14px;
font-weight:bold;

}

Notice that I also made the words bold.  Because I click through many ePorts at a time, I need to be able to readily see these buttons.  I also wanted my buttons to match the rest of my site.

DRAFT: This module has unpublished changes.