color on this div will only show for the length of the content. If you'd like a dividing line instead, place a border on the left side of the #mainContent div if the #mainContent div will always contain more content than the #sidebar1 div.

Donec eu mi sed turpis feugiat feugiat. Integer turpis arcu, pellentesque eget, cursus et, fermentum ut, sapien.

Sidebar2

The background color on this div will only show for the length of the content. If you'd like a dividing line instead, place a border on the right side of the #mainContent div if the #mainContent div will always contain more content than the #sidebar2 div.

Donec eu mi sed turpis feugiat feugiat. Integer turpis arcu, pellentesque eget, cursus et, fermentum ut, sapien.

Multiple CSS Linking Styles

You can also do multiple linking styles, instead of just the one. However, you will need to create these in the actual css code. The easiest way to do this is to create your main linking style using the CSS Panel. I usual create these linking styles for how I want my embedded (text) links to look. (That way you don't have to worry about adding a special style to the links you have in your content.)

Then you need to create new linking styles that essentially combine the a:link style with a custom class (those are the ones that are named with a dot before the name, eg., .newlink).

Simply open up the .css file (or go to the head part of the document if it is embedded), and copy your linking styles.

Paste them underneath your main linking style, and then add the .name to the new set of styles. They'll look something like this:

a:link{style choices; }
a:visited{style choices; }
a:hover{style choices;}

Then add the name for the new linking style:

a.mainnav:link{style choices; }
a.mainnav:visited{style choices; }
a.mainnav:hover{style choices;}

Save the file, and then they will appear in the CSS Panel, and you can then use the edit button to make the link style look the way you want.

To use the new link style, just click on the link you want to change (one click, anywhere in the link), and you will be able to choose that linking style from the style pulldown in the Properties Inspector.