Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Learn More

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

Theme doesn't display in top right corner

more options

I just started using Firefox for the first time. (I'm a die-hard Chrome user).

My Specs Firefox 59 32-Bit (32-Bit seems a tad faster so I'm currently trying it) Windows 8.1 Pro 64-Bit Intel i5

Anyway, when I install a theme the top right corner doesn't get filled in...the area with Close, Maximize, Minimize.

Here is an example:

https://www.howtogeek.com/wp-content/uploads/2014/11/img_5474dc80bc6db.png

You'll notice part of the lady bug is chopped off.

How can I fix this? Thanks!

I just started using Firefox for the first time. (I'm a die-hard Chrome user). My Specs Firefox 59 32-Bit (32-Bit seems a tad faster so I'm currently trying it) Windows 8.1 Pro 64-Bit Intel i5 Anyway, when I install a theme the top right corner doesn't get filled in...the area with Close, Maximize, Minimize. Here is an example: https://www.howtogeek.com/wp-content/uploads/2014/11/img_5474dc80bc6db.png You'll notice part of the lady bug is chopped off. How can I fix this? Thanks!

Tutte le risposte (4)

more options

HI, it looks like your background wall paper is bleeding through all around the edges and that blue for min/max unless that is what it looks like. Suggest changing wallpaper to see if that makes and difference.

Would not the lady bug thing change with size of screen size ? I have noticed some others do.

That theme must be a older one as does not show up in the Search Box https://addons.mozilla.org/en-US/firefox/addon/a-lovely-little-ladybug/ It may not be compatible which could be the issue. Are you using usserChrome to put that up ?

As you do not have send info to Mozilla turned on within Firefox before posting I can not see the theme name or what put it there.

Please let us know if this solved your issue or if need further assistance.

more options

This happens with any theme. It's definitely not an issue on my end, I can duplicate it on any PC. It's just very poor implementation by Firefox and there does not appear to be a cure. Looks like I'll have to do the ol' userChrome.css trick.

BTW, the lady bug theme was just an example photo I found.

more options

Try to set a lower opacity to the controls in userChrome.css:

#titlebar-buttonbox-container {opacity: 0.5}
more options

On Windows 7 and Windows 8, Firefox cedes control to Windows to draw the buttons and I can't find a way to change their appearance. If I hide them, the clickable area is still live, so not having the actual buttons makes that area a little dangerous to click in.

I did stumble across a very odd workaround for Windows 7. I don't know if it will work on Windows 8.1.

/* Mouse pointer over Firefox EXCEPT Windows 7 buttons */
#main-window:hover #titlebar-buttonbox-container {
  visibility: hidden !important;
  transition: visibility 100ms ease-in-out;
}
/* Mouse pointer over Windows 7 buttons or outside window */
#main-window:not(:hover) #titlebar-buttonbox-container {
  visibility: visible !important;
  transition: visibility 100ms ease-in-out;
}