| | |
| | | | |
CSS |
|
|
PhotoToWeb provides a great deal of control in setting your pages’ appearance. However, it can’t provide the flexibility that you can achieve by handcoding HTML. PhotoToWeb has taken a step in that direction by surrounding various elements in the HTML it generates with class names. These class names can be used in CSS (Cascading Style Sheet) styles to control the pages’ appearance.
For example, by putting the following specification into the header HTML and choosing to use text navigation bars, you can give your menu a rollover effect:
<STYLE TYPE=”text/css”>
.menu {background-color: #FF00FF; }
.menu a:link {color: #0000FF; font-weight: bold; text-decoration: none; }
.menu a:visited {color: #894F7B; font-weight: bold; text-decoration: none;}
.menu a:active {color: red; }
.menu a:hover {text-decoration: underline; background-color: #FFFFFF; }
</STYLE> |
|
|
|
|
|
Note: Hover is not supported by all browsers. |
|
|