Hiển thị các câu hỏi được đánh dấu: Xem tất cả các câu hỏi

URL bar popup menu text spaced out (kerning/tracking issue)

Hi All, Is there any reason why the menu item text in the URL popup menu is so spaced out in FF 115 and 125? It's the only menu I've found like that. See attached scre… (xem thêm)

Hi All,

Is there any reason why the menu item text in the URL popup menu is so spaced out in FF 115 and 125?

It's the only menu I've found like that.

See attached screenshots. The one on the left is FF 115, and the one on the right is FF 88 (more normal).

Is there a way to fix this?

And also remove that "Add" menu item at the bottom?

If so, please reply!

Được hỏi bởi Slouch 13 giờ trước

Change URL border color when focused

Hi All, I would like to change the url border color when it has the focus to blue. The code below works, except when you press Escape. After hitting Escape, the urlbar… (xem thêm)

Hi All,

I would like to change the url border color when it has the focus to blue.

The code below works, except when you press Escape.

After hitting Escape, the urlbar still has the focus but its border changes back to gray. It should remain blue.

I would also like to remove the box-shadow after pressing Escape, when the urlbar is not expanded (to mimic the behavior of FF 88).

The url and search input fields also do the same goofy thing Windows 10 does - the cursor stops blinking after 5 blinks and remains frozen. Any way to remove that behavior and keep the cursor blinking? If not, no big deal, the other stuff above is more important.

Any code suggestions to get that behavior are welcome!

/* set the initial borders of the urlbar and search bar to gray */
#urlbar > #urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background, #searchbar { border: 1px solid #a1a6b5 !important; outline: none !important; border-radius: 0px !important; }
/* set urlbar border to blue when focused */
#urlbar[breakout][breakout-extend] #urlbar-background {
   border-color: #0078d7 !important;
}

Được hỏi bởi Slouch 23 giờ trước

Lần cuối trả lời bởi Slouch 15 giờ trước

  • Đã giải quyết

Setting border color for focused URL Bar

Hi All, I'm trying to set the border color for my url & search bars to gray when non-focused, and blue when receiving the focus. The following code works for the se… (xem thêm)

Hi All,

I'm trying to set the border color for my url & search bars to gray when non-focused, and blue when receiving the focus.

The following code works for the search bar, but the url bar is receiving a separate blue border around the gray border, instead of changing the color from gray to blue.

Can someone suggest how I might set the url bar to blue (just a single border, not the double it has now), both when it has focus and when it's expanded?

Thank you!

/* set non-focused url & search bars to gray border */
#urlbar > #urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background, #searchbar { border: 1px solid #a1a6b5 !important; outline: none !important; border-radius: 0px !important; }
/* set focused search bar to blue border */
#urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background:focus-within, #searchbar:focus-within { border: 1px solid #0078d7 !important; }
/* set focused url bar to blue border */
#urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background:focus-within, #urlbar:focus-within { border: 1px solid #0078d7 !important; }

Được hỏi bởi Slouch 1 tuần trước

Được trả lời bởi Slouch 23 giờ trước

Offidocs

How do I get rid of this on my Firefox browser it keeps coming up all the time??? https://www.offidocs.com/media/system/app/view_edit_pdfeditor_nav.php?myServerhost=tut&… (xem thêm)

Được hỏi bởi thinkingofhow 17 giờ trước

Can't log in to Regions Bank Account. Message: "We can’t locate that page right now."

Can't log in to Regions Bank Account. Message: "We can’t locate that page right now." after typing in password Works fine on other browsers. Problem started Maybe arou… (xem thêm)

Can't log in to Regions Bank Account. Message: "We can’t locate that page right now." after typing in password Works fine on other browsers.

Problem started Maybe around mid April. Have 5 computers: 2 running Windows 10, 2 running Windows 7 Professional, 1 running Linux

Problem occurs only on the computers running windows 7 Professional

Regards.

Được hỏi bởi HBR Firefox VPN 2 ngày trước

Lần cuối trả lời bởi jonzn4SUSE 22 giờ trước

Windows 11 'OS level' VPN settings?

Hello, First post and could not find this surprisingly... I'm wondering what settings to use for windows 11 VPN section. i installed on my desktop but when i go to VPN se… (xem thêm)

Hello, First post and could not find this surprisingly... I'm wondering what settings to use for windows 11 VPN section. i installed on my desktop but when i go to VPN settings in current win 11 it does not list a VPN. is this possible to use Mozilla VPN at OS level or is it only via ff browser?

 Thanks! 

I love Mozilla and what they do with their products! :-)

Được hỏi bởi lrs2 1 ngày trước

Lần cuối trả lời bởi TyDraniu 1 ngày trước

  • Đã giải quyết

Move Tab Icons (favicons) up 1px

Hi All, For some reason my tab icons look a little low, and I would like them more vertically centered. I've been trying to move these icons around using some older cod… (xem thêm)

Hi All,

For some reason my tab icons look a little low, and I would like them more vertically centered.

I've been trying to move these icons around using some older code that doesn't seem to work anymore.

The code below no longer has any effect.

Does anyone know how to move the tab icons up 1 pixel?

Thanks!

/* padding doesn't move them */
.tab-throbber, .tab-icon-image { padding-bottom: 4px !important; }
/* margin doesn't move them */
.tab-throbber, .tab-icon-image { margin-bottom: -2px !important; }
/* can't even turn the icons off LOL */
.tab-icon-image { display:none !important; }

Được hỏi bởi Slouch 2 ngày trước

Được trả lời bởi cor-el 1 ngày trước

TracFone Sign In Doesnt work on FireFox

I can't sign into my TracFone account on FireFox or FireFox Private Window. But I "can" sign on in Chrome. Is there someway to fix this as FireFox is my main default brow… (xem thêm)

I can't sign into my TracFone account on FireFox or FireFox Private Window. But I "can" sign on in Chrome. Is there someway to fix this as FireFox is my main default browser.

Thanks in advance for any advice

Được hỏi bởi SunnySkyez 3 ngày trước

Replace context menu navigation icons with text only

Hi All, Is there a way to replace the navigation icons on the context menu with their text-only counterparts? I've tried the following code segments which provide less-… (xem thêm)

Hi All,

Is there a way to replace the navigation icons on the context menu with their text-only counterparts?

I've tried the following code segments which provide less-than-optimal results.

This one which worked in FF 88, now removes the icons, but leaves 4 blank buttons in a row with no text...

#context-back image,
#context-forward image,
#context-reload image,
#context-stop image,
#context-bookmarkpage image {display: none !important;}}


This one completely removes the options, but I would like to keep them, and replace them with their text counterparts

#context-navigation,
#context-sep-navigation {
   display:none !important;
}


Please see attached images for the before and after of what I'm trying to achieve.

Might be nice to have the blank icon column to the left of these 4 items so they all line up with the items below, but I can live without that if it's not possible.

Any help is appreciated!

Được hỏi bởi Slouch 3 ngày trước

Lần cuối trả lời bởi Slouch 3 ngày trước

Browser crashes on opening certain filetypes (notably PDF)

Hi everyone, I'm running Firefox which I compiled with vaapi support because I was trying to use hardware acceleration for videos, so I think this bug may have something… (xem thêm)

Hi everyone,

I'm running Firefox which I compiled with vaapi support because I was trying to use hardware acceleration for videos, so I think this bug may have something to do with that. Every time I open a pdf file my browser instantly crashes. When I use troubleshoot mode I have no such issue. I then tried with a fresh all-default user profile with no add-ons, nothing, and still I crash when loading a PDF. Any pointers would be appreciated.

Được hỏi bởi jethro.rosette 1 tuần trước

Lần cuối trả lời bởi jonzn4SUSE 5 ngày trước

Are Firefox Menus Different in Windows 7 and Windows 10?

Do Firefox menus appear differently in Windows 10 than they do in Windows 7? In Windows 7, I see the normal system menus - square corners, light blue menu item highlight… (xem thêm)

Do Firefox menus appear differently in Windows 10 than they do in Windows 7?

In Windows 7, I see the normal system menus - square corners, light blue menu item highlights, 3D column line on the left, dark drop shadow below and to the right of the menu.

In Windows 10 I notice differences - gray-highlighted menu items, rounded corners, no drop shadow, etc.

I'm not using any code to style the menus.

Please see attached images.

Thanks to all who respond.

Được hỏi bởi Slouch 6 ngày trước

Lần cuối trả lời bởi Slouch 5 ngày trước

Menu Padding Code Works in FF on Windows 10 but not in Windows 7?

Hi All, Any idea why the menu code I'm using below to reduce padding in menu items is only affecting Firefox in Windows 10, but not in Windows 7? Please see attached im… (xem thêm)

Hi All,

Any idea why the menu code I'm using below to reduce padding in menu items is only affecting Firefox in Windows 10, but not in Windows 7?

Please see attached images.

It's a very strange anomaly. This is true for both FF 125 and FF 115 ESR.

Thanks to all who respond.

/*** Tighten up drop-down/context/popup menu spacing (8 Sep 2021) ***/ /*

*
* why doesn't this affect the Firefox menu bar in Windows 7?  only in windows 10?
*
*/

menupopup:not(.in-menulist) > menuitem, menupopup:not(.in-menulist) > menu {

 padding-block: 0px !important; /* reduce to 3px, 2px, 1px or 0px as needed */ 
 min-height: unset !important; /* v92.0 - for padding below 4px */

}

root {
 --arrowpanel-menuitem-padding: 4px 8px !important;

}

Được hỏi bởi Slouch 6 ngày trước

Lần cuối trả lời bởi Slouch 6 ngày trước

Mozilla Firefox ESR notification of infection

My Windows virus protection shows nothing but I keep getting notices int he lower right corner of my screen that say Mozilla Firefox ESR and tell me there is an infection… (xem thêm)

My Windows virus protection shows nothing but I keep getting notices int he lower right corner of my screen that say Mozilla Firefox ESR and tell me there is an infection. It tries to take me to a website to scan and then buy McAfee to fix it. If I make sure Firefox is shut down (forced through Task Manager) it seems to go away. It appears that only the Firefox browser may be infected.

Được hỏi bởi kirk20 6 ngày trước

Lần cuối trả lời bởi cor-el 6 ngày trước

you tube tv

After the browser update earlier today I cannot log into 'You Tube TV'. The browser keeps asking for my email and password over and over and never signs me in. It keeps t… (xem thêm)

After the browser update earlier today I cannot log into 'You Tube TV'. The browser keeps asking for my email and password over and over and never signs me in. It keeps telling that I am signed out and need to sign in, over and over. I cleared my cache and cookies. I changed my sign in from my yahoo email to my gmail account and it still will not work. If I use the chrome browser it works fine. Please Help.

best regards,

john loomis jr.

Được hỏi bởi jloomisjr2 1 tuần trước

Lần cuối trả lời bởi cor-el 6 ngày trước

Bookmarks Toolbar Popup Menu Padding, Color, and more.

Hi All, I'm trying to change the appearance of the "Bookmarks Toolbar / Chevron >>" popup menu, which (after version 88) has turned bright white with extra padding… (xem thêm)

Hi All,

I'm trying to change the appearance of the "Bookmarks Toolbar / Chevron >>" popup menu, which (after version 88) has turned bright white with extra padding between menu items and rounded corners.

I'm a fan of system menus, so I would really like the popup menu to look like the regular bookmarks menu from the top menu bar (see attached image).

I also like the subtle chiseled vertical line separating the favicons and the descriptions, and the 1px gray border around the menu, plus square corners.

I took a guess at some of the variable names, but only the menu's background color has changed.

Maybe someone knows how to change other attributes such as border color, radius, menu-item-height, padding, and add in the 3D vertical column line?

Thank you!

Here is my first attempt at the code...

#PersonalToolbar menupopup {
  /* Text color */
  --menu-color: #000 !important;
  --arrowpanel-color: #000 !important;
  --panel-color: #000 !important;
  /* Background color */
  --menu-background-color:  #f0f0f0 !important;
  --arrowpanel-background: #f0f0f0 !important;
  --panel-background: #f0f0f0 !important;
  /* Border color (if any) */
  --menu-border-color: #606060 !important;  /* not working on boomarks toolbar menu */
  --menu-border: 1px !important;  /* not working on boomarks toolbar menu */
  --menu-border-radius: 0px !important;  /* not working on boomarks toolbar menu */
}
/*** Tighten up drop-down/context/popup menu spacing (8 Sep 2021) ***/
menupopup:not(.in-menulist) > menuitem, 
menupopup:not(.in-menulist) > menu {
  padding-block: 0px !important; /* reduce to 3px, 2px, 1px or 0px as needed */ 
  min-height: unset !important; /* v92.0 - for padding below 4px */
}

Được hỏi bởi Slouch 1 tuần trước