Does anyone know of a way to center the dropdown text links? They're left aligned.
Thanks,
DRW
![]()
Does anyone know of a way to center the dropdown text links? They're left aligned.
Thanks,
DRW
![]()
It's sort of a hack, but you can do it. Make the first element of the array a table tag, for example:
You can then add table rows and cells to the remaining elements.Code:menu1[0] = "<table border=0 cellpadding=0...>"
That has worked for me in the past. Be sure to use the final element to close the table tag.Code:menu1[1] = "<tr><td align="center"><a href="http://www.something.com">link text</a></td></tr>"
Best of luck.
bfisher
If you're referring to centering the text inside the drop down menu, simply add a text-align attribute to the CSS file:
#dropmenudiv{
text-align: center;
"
"
}
Bookmarks