logo

Dreamweaver CS3
PC/Mac

Dreamweaver CS3


Link - Beyond the BasicsLink - Site Management Features

Dreamweaver CS3 is very similar to Dreamweaver 8.

In addition, Adobe has some excellent help available on

Dreamweaver has some nice layouts and sample to get you started: select File > New, then choose Blank Page, HTML, and a layout with different types of columns, or choose Page from Sample, Starter Page, and a choose a sample page.

Dreamweaver creates CSS as you modify text properties. This feature can be turned on/off by selecting Edit > Prefences, General heading: Use CSS instead of HTML tags.

CSS rules can be viewed and modified by

CSS styles have priority in order of location: inline CSS has the highest priority, followed by internal CSS, and then external stylesheets. However, if an external stylesheet is referenced in the head of a document after internal CSS, it will have priority in application. Including a "body" rule in your CSS is a quick way to see which set of CSS rules have taken precendence. The obvious advantage of a single external stylesheet is that edits can be made in one place since the CSS is shared between multiple pages.

Here's some common CSS that sets the background color, default font, and removes the underline on links except when "hovered" over:

body {
background-color: #B4A67B;
font-family:Arial, Helvetica, sans-serif
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: none;
}

A CSS class can be applied to certain sets of links to make them look different than the default links. This is helpful for links that appear on a dark background; for example, the class below, "navlink" appears as white text that turns light grey and underlined when moused over:

.navlink {
color: #FFFFFF;
text-decoration: none;
font-size: 16px;
font-weight: bold;
line-height:14px;
}
.navlink:visited {
color: #FFFFFF;
text-decoration: none;
}
.navlink:hover {
color: #CCCCCC;
text-decoration: underline;
}



Computing at Wellesley

Macintosh Documentation

PC Documentation


logo

Wellesley College | Information Services | Archives
Computing | Library | Media Services | Telephone & Voicemail