How to move a span class

I am not sure what is going on with my media query but for my media query 1024px, I am finding it hard to move things around. Sometimes, I can get the margin or padding to make it move left or right instead of positioning but my span tag is can’t be moved up or down but just left or right. Is there another way that I can go about in moving things up or down?

I am wondering how to move my textarea with this code as I have tried margin-bottom and bottom. I can get it to move left or right but not down or up

.admin_create_level1promo textarea {
  width: 25em;
  height:6em;
  position: absolute;
  font-size: 1em;
 bottom: 40em !important;
}

margin-bottom moves the contents up, while margin-top moves the contents down. Use margin-top.

I tried but it doesn’t work for some strange reason… I will try it again but can’t think of anything else to implement

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.