![]() |
|
Denise deGoumois
|
||
![]() ![]() |
Web SitesWish ListWeb/multimedia digital design, animation, illustration, computer graphics; also electronic/print publishing production, page layout, typography. (Part-time or project, freelance basis.) Expert SkillsQuarkXPress; Adobe Photoshop, ImageReady, Illustrator, AfterEffects; Macromedia Flash, Director, Fireworks, Dreamweaver; Corel Painter. Web FluentCSS, HTML, DHTML, XHTML, XML, JavaScript, Lingo, ActionScript GUI-programming. Other Electronic GismosMS Graph, PowerPoint, Word, Excel, Access, WordPerfect. Related Know-How
Schooling
Present Reality
Past Life
PrécisDaily use latest software: QuarkXPress; Adobe Photoshop, ImageReady, Illustrator, AfterEffects; Macromedia Flash, Director, Fireworks, Dreamweaver; Corel Painter. Initially, sought print path to publishing/graphics. Now caught up in Web design, illustration, animation, HTML, DHTML, XML, CSS, JavaScript, electronic, multimedia, GUI-programming spectacle. Currently "Web master, designer" of 5 Web sites using HTML, CSS, DHTML, JavaScript, animated GIFS, Flash ActionScript, Director Lingo, Aftereffects, ImageReady, Photoshop, multimedia, GUI-programming, etc. Coupled with traditional editorial and illustrative talents/experience, offer strong digital imagery, typography, layout and production skills. Also expert skills with numerous specialized and general office programs (MS Graph, Word, Excel, PowerPoint, WordPerfect) and heavy law-firm word-processing experience. |
|||
| Back to Top of Page | ||||
| Back to Top of Page | ||||
| Back to Top of Page | ||||
Ahem, excuse us! If you can see this message, your browser is not CSS2 complaint. This site employs Cascading Style Sheets and JavaScript so it looks better in browsers that support Web standards.
* * * Ahem, excuse us! If you can see this message, your browser is not CSS2 compliant. This site looks better in browsers that support Web standards.
* * *CSS Notes: It's all too true, “Use it, or lose it.” Had to review notes from Steve Callihan's Cascading Style Sheets (CSS) by Example, Chap.11 Lists to format the bullets (which still do not work as hoped). Might be worth noting here.
You know, UL (“unordered” bulleted lists) and OL (“ordered” numbered lists) both use LI (list item). DL (definition lists), which is like a glossary, uses DT (definition term) and DD (definition description).
Can specify nested-list bullet (or number) types as “contextual” styles:
The list-style-postion property values are “outside” (like a hanging indent with block text) or “inside” (like an indented first line and text wrap to left margin); list-style-image property takes value of URL/path of image file or “none” (which would turn off any previously specified image as bullet).
Can control relative position of list on page by specifying margins for UL and LI elements. Specify padding-left to add horizontal spacing between list's bullets and following text. Because browsers set horizontal margins for UL elements inconsistently, should specify horizontal margin spacing for LI elements, but not for UL or OL list element itself.
ul { list-style-type: circle; list-style-position: outside;
margin-top: 0; margin-left: 30px; }
li { margin-right: 2em; margin-top: 1em; padding-left: 10px; border-style: solid;
border-width: 1px; }
Roll-over effects for headings and sub-headings were achieved in similar but different ways.
For <h2>, variations of element's basic style were created in Style Sheet for classes named h2.over2 { color: #FF99FF; } and h2.out2 { color: white; }. Then in <BODY> specified, <h2 onMouseOver = "this.className='over2';" onMouseOut = "this.className='out2';"> __ </h2>.
For style class named .emphasize, no variations of style were created in Style Sheet and, in <BODY> only, specified <span class="emphasize" onMouseOver ="this.style.color = '#FF99CC';" onMouseOut = "this.style.color = 'white';"> __ </span>.
While the second method may seem to be less work, creating specific values for style properties (in this case pink color) in Style Sheet can be more easily changed globally.
| Home | Digital Stuff | Prose Illustrated | Other Sites | AfterEffects | CSS |
| Back to Top of Page | |||||