Doug Niven wrote: > [...] However, at the bottom of my document in a footer I need to > style the links differently and am completely flummoxed how I can do > this! > > How, for example, could I use an inline style to do this?
Preferably /not/ by using inline styles. Instead, add unique styles for /all/ links within footer - somewhat like this... #footer a:link, #footer a:visited { text-decoration: none; color:#700; } #footer a:hover { color: #333; text-decoration: underline } ...or you may use a class - somewhat like this... a.some-name:link, a.some-name:visited { text-decoration: none; color:#700; } a.some-name:hover { color: #333; text-decoration: underline } ...which will only affect links with that class... <a class="some-name" href="...">...</a> regards Georg -- http://www.gunlaug.no ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/