DREAMWEAVER

DYNAMIC CONTENT SLIDER

This is a great code to use if you would like to have full control of any billboard you place on your site.

- Example: http://natickhighwebdesign.com/rgnetworks/
- Video Tutorial: http://www.youtube.com/watch?v=NQmZzh1PSVg&feature=youtu.be (unedited version)

Thank you to student Henry D. for the assistance!


SETTING UP DIFFERENT LINK COLORS ON ONE HTML FILE

When you wants two sections in your site to have different link settings you have to create a new class. But since there is no class rule for links you have to manually write it in the code view in Dreamweaver.

Here is the code for separate link settings:
     <style type="text/css">
     <!--
     a:link {color: #000000; text-decoration: underline; }
     a:active {color: #0000ff; text-decoration: underline; }
     a:visited {color: #008000; text-decoration: underline; }
     a:hover {color: #ff0000; text-decoration: none; }
     -->
     </style>

Now here is an example:
     <style type="text/css">
     <!--
     a.blue:link {color: #0000ff; background: #ffffff; font-weight: bold;}
     a.blue:active {color: #0000ff; background: #ffffff; font-weight: bold;}
     a.blue:visited {color: #0000ff; background: #ffffff; font-weight: bold;}
     a.blue:hover {color: #0000ff; background: #ffffff; font-weight: bolder;}

     a.red:link {color: #ff0000; background: #ffffff; font-style: italic;}
     a.red:active {color: #ff0000; background: #ffffff; font-style: italic;}
     a.red:visited {color: #ff0000; background: #ffffff; font-style: italic;}
     a.red:hover {color: #ff0000; background: #ffffff; font-style: normal;}
     -->
     </style>

These are two separate examples for different link settings. The first one is making the links bold and blue while the second one is making the links red and italic. Once you edit the code, the class will have been created and you can now choose the classes for different links.