Topic: CSS to move the "Add To Set" button to the top

Posted under e621 Tools and Applications

I use my sets every time I use e621 and it would be much easier if I could move the button to the top, is there a CSS I could add to move it near the actual image?

walkingspaghett said:
I use my sets every time I use e621 and it would be much easier if I could move the button to the top, is there a CSS I could add to move it near the actual image?

Yes.

walkingspaghett said:
I use my sets every time I use e621 and it would be much easier if I could move the button to the top, is there a CSS I could add to move it near the actual image?

I figured it out, the code for it is:

#set {
  position: absolute;
  top: 510px; 
  left: 10px; 
} 

Change this as you please, these numbers are set up for mobile.

I put the "Add To Set" button where the resize notice is, to remove that text do:

#image-resize-notice {
  color: transparent;
}