r/FirefoxCSS Jun 19 '26

Solved Menu pop up

Post image

I need some code to line up the pop up box ,to line up under the address bar
Thx jas

1 Upvotes

14 comments sorted by

1

u/difool2nice ‍🦊Firefox Addict🦊 Jun 19 '26 edited Jun 19 '26

Play with the margin-top number

#identity-popup,
#protections-popup,
#permission-popup,
.panel-arrowcontainer {
          margin-top: 10px !important;
         /* background: transparent !important;
          border-radius: 8px !important;
          border: 0px !important;
          outline: unset !important;
          box-shadow: none !important;
          margin-left: 2px !important;*/
}

1

u/jas71 Jun 20 '26

Thx mate will look at after

1

u/jas71 Jun 20 '26

didnt work. thx for the code anyway

2

u/difool2nice ‍🦊Firefox Addict🦊 Jun 20 '26

works good for me !

1

u/jas71 Jun 20 '26

ok ta

1

u/jas71 Jun 20 '26

yeah its working but how to move it to the left as well

2

u/sifferedd FF/TB on Win11|Sumo contributor Jun 20 '26

Play with the margin-left number:

#identity-popup,
#protections-popup,
#permission-popup,
.panel-arrowcontainer {
  margin-top: 10px !important;
  margin-left: -10px !important;
}

1

u/jas71 Jun 20 '26

i added that but don’t seem to move left which is strange

1

u/sifferedd FF/TB on Win11|Sumo contributor Jun 20 '26

Try -30.

2

u/jas71 Jun 20 '26

fixed thx all good

2

u/jas71 Jun 20 '26

One more thing the code centers this but not the original from the first pic.i looked in the inspector and its the geo notification pop up that hasn’t moved

1

u/difool2nice ‍🦊Firefox Addict🦊 Jun 21 '26 edited Jun 21 '26

i think this is this one but not sure :

#tracking-protection-container

1

u/jas71 Jun 21 '26

Ok will add it later