buyz,
The following div of nav is not right-aligned. Also, my previous code
works as expected for Firefox 12 (that is, the div is right-aligned
but not for Safari). And also, for the scripting language I'm using
for the app, # is a special character, it is escaped via prefixing
another one to it, I tried both ##menu and #menu to no avail (for div
alignment), hmm, not sure what's going on. Thanks.
DOM loaded
=======
<html>
<head>
<title>Quick Notes Access by Subject</title>
<style>
#menu {
float: right;
text-align: right;
background-color: #EFF9FC;
}
</style>
</head>
<body>
<div id="nav" class="menu">
<a href="fancyNote.cfm">Add Note</a>
<a href="logout.cfm">Logout</a>
<br/>
</div>
</body>
</html>