DRAFT: This module has unpublished changes.

How to Create a Border Around Pages

and Include a Background Color

 

Creating these changes is done through the Custom CSS section.

  

Once inside the Custom CSS section, we are going to change the code under /*The #footer is for the content at the bottom of your pages and can be customized to fit the look and feel you are looking for. */

 

To create these effects, replace

 

#footer_container {
  background:none;
  border-top:1px solid #AAAAAA;

 

with the following code:

 

#portfolioright {
background: #FFFFFF;
border-radius: 10px;
-moz-border-radius: 10px;
border: 2px solid #A9A9A9;
margin: 20px 0px 0px 0px;
width: 550px;
To change the background colors, find the desired color code and replace it here:
background: #FFFFFF;
To chance the boarder color, find the desired color code and replace it here:
border: 2px solid #A9A9A9;
 

 

DRAFT: This module has unpublished changes.
User-uploaded Content
DRAFT: This module has unpublished changes.