How do i make a sidebar background color? [closed]

The simplest way to create the solid color side bar is with this CSS:

#branding { background-color: #ffffff; }
#page { background: #ffffff url(path_to_image) repeat-y; }

Replace #ffffff with the appropriate color used in your template (if they are different). The “path_to_image” would need to be pointed to an image file that is 1000px wide and 1px high. The image itself would contain the sidebar color starting about 800px from the left.