My blog is here: Solomonia.com
My links list is getting a bit large, so I finally figured out how to make a link list. I know nothing about Java, so this was something that I found out there on the web and it's working for me. Here's the code in my page:
CODE
<form>
<select onChange="window.open(this.options[this.selectedIndex].value)" width="125px" class="boxattributes">
<option>::Good Blogs::</option>
<option>::that don't link back yet::</option>
<option>-----</option>
<option value="http://www.amritas.com/">Amaravati</option>
<option value="http://americanthinker.com/index.php">The American Thinker</option>
<option value="http://www.andrewsullivan.com/">Andrew Sullivan</option>
<option value="http://andrewapostolou.blogspot.com/">Apostablog</option>
[snip long list of links]
</select>
</form>
<select onChange="window.open(this.options[this.selectedIndex].value)" width="125px" class="boxattributes">
<option>::Good Blogs::</option>
<option>::that don't link back yet::</option>
<option>-----</option>
<option value="http://www.amritas.com/">Amaravati</option>
<option value="http://americanthinker.com/index.php">The American Thinker</option>
<option value="http://www.andrewsullivan.com/">Andrew Sullivan</option>
<option value="http://andrewapostolou.blogspot.com/">Apostablog</option>
[snip long list of links]
</select>
</form>
In my style-sheet, I control the look with this little snippet:
CODE
.boxattributes {
background-color: #aabadd;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size : x-small;
}
background-color: #aabadd;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size : x-small;
}
My questions!
1) How do I get the links not just to open in a new window, but in a named window. For instance, I have all my links open with target="solomonia" (oddly enough). How do I get the text box to do that?
2) How can I get the text centered? Can I use the css entry for that?
Thanks anyone for help/advice.