XF 1.1 Display Options Tab

Drae

Active member
(Using 1.1.3.)

I'm trying to align the display thread options tab to the right hand side, without it overlapping everything. Any suggestions? I'm guessing it has something to do with the display styling but I've tried tweaking that without success, so here's the coding at the moment from discussion_list.css:

Code:
  {
     @property "discussionListOptionsHandleLink";
  align: right;
     font-size: 12px;
     color: #404040;
     background-color: #e9e9e9;
     padding: 12px
     margin: 25px auto 10px;
     border: 1px solid #dad9da;
     border-top-right-radius: 10px;
  border-top-left-radius: 10px;
     border-bottom-right-radius: 10px;
     border-bottom-left-radius: 10px;
  padding: 10px;
     display: inline-block;
     outline: 0;
     @property "/discussionListOptionsHandleLink";
   }
 
Top Bottom