View Single Post
Unread 08-27-2007, 02:26 PM
bcarl314 bcarl314 is offline
Senior Member
Join Date: Aug 2007
Posts: 141
  #6  
Default

Well, you could add a few CSS declarations to handle this.

First, override the default setting as I mentioned before, but if you want to apply to only one, then give that ul and ID and apply it. For example...

Code:
<ul id="special_ul">
Then in your CSS do this...

Code:
ul#udm ul#special_ul {
 position:absolute; /* or relative, whatever works for your needs */
 top:3px;
 right:3px;
}
Reply With Quote