Reply To: What is the best way to insert code?

Home Forums Support What is the best way to insert code? Reply To: What is the best way to insert code?

Home Forums Support What is the best way to insert code? Reply To: What is the best way to insert code?

#239256
Stacey Usborne
Staff
Customer Support

I would wrap the code you inserted in the wp_footer hook with a <div> and give it a class.

Then you would use this CSS:

.your-class{
    position: absolute;
    top: 0;
    right: 0;
}

Let me know if this works.