Edit /demo1/caytech/includes/templates/NE_TEMPLATES/css/stylesheet.css
Background
Code:
body {
margin: 0;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 62.5%;
color: #000000;
background-color: #ffffff;
}
Change background-color to the hex code of your choice. Google "hex code" for color lists.
Border around catigory box
You can change this by replacing the following:
Code:
#navColumnOne {
background-color: #ffffff;
}
with:
HTML Code:
#navColumnOne {
background-color: #ffffff;
border: 1px solid #000;
}
Change the hex code "#000" if you want a different color, the "1px" if you want a different width, and "solid" if you want a different style like "dashed".
Likewise with the other sections for borders, just cright click on the page and click view source, then search for the section that needs the border using text on the page, and then add the line in as done above.