Showing questions tagged: Show all questions
  • Archived

add image to my custom theme with manifest.jsn

I have been trying to edit a preexisting theme from mozilla store by using this link. I was wondering whether there was a way to make a section other than the top header … (read more)

I have been trying to edit a preexisting theme from mozilla store by using this link. I was wondering whether there was a way to make a section other than the top header an image, because in the colors bit I can only add rgb or css color string.

Here is the code just in case: {

 "manifest_version": 2,
 "version": "1.0",
 "name": "Animated Kimi no Na wa",
 "theme": {
   "images": {
     "additional_backgrounds": [
       "images/your_name-cropped.gif"
     ]
   },
   "properties": {
     "additional_backgrounds_alignment": [
       "center center"
     ],
     "additional_backgrounds_tiling": [
       "repeat"
     ]
   },
   "colors": {
     "toolbar": "rgba(31, 34, 61, 0.24)",
     "toolbar_text": "rgb(180, 201, 240)",
     "frame": "rgb(8, 11, 33)",
     "tab_background_text": "rgb(255,255,255)",
     "toolbar_field": "rgba(54, 58, 89, 0.69)",
     "toolbar_field_text": "rgb(255, 255, 255)",
     "tab_line": "rgb(205, 35, 185)",
     "popup": "rgb(31, 34, 61)",
     "popup_text": "rgb(215, 226, 239)",
     "popup_highlight": "rgb(205, 35, 185)",
     "popup_highlight_text": "rgb(180, 201, 240)",
     "tab_loading": "rgb(205, 35, 185)",
     "ntp_background": "rgb(42,42,46)"
   }
 }

}

Asked by emakobayashi628 1 year ago

Last reply by cor-el 1 year ago

  • Archived

Star Ratings Now Too Small with Latest Update

Hi there. Ever since the latest Firefox update, the star ratings accompanying my reviews on my website have shrunk. They used to be the perfect size, but now they're tiny… (read more)

Hi there. Ever since the latest Firefox update, the star ratings accompanying my reviews on my website have shrunk. They used to be the perfect size, but now they're tiny and look ridiculous. The stars I use aren't by code but rather ones than I cut and paste from a saved file. The words are all the same size as previously; it's only the stars that have shrunk. This has affected all the past hundreds of articles on my site as well as the new ones I add. What can I do to make the stars bigger as they were before this unfortunate update? Unfortunately, I don't have an example of how they used to look (because how could I have predicted such a nonsensical and user-unfriendly change?), but attached is how they look now. Thanks.

Asked by mattonmovies 1 year ago

Last reply by mattonmovies 1 year ago

  • Archived

PNC Bank site is no longer accessible on Firefox after entering login credentials

PNC Bank site is no longer accessible on Firefox after entering login credentials I am running Firefox 87.0 on a MacBook Pro that is running Mac OS Big Sur 11.2.3. The p… (read more)

PNC Bank site is no longer accessible on Firefox after entering login credentials

I am running Firefox 87.0 on a MacBook Pro that is running Mac OS Big Sur 11.2.3. The problem started approximately one week ago. If this is not resolved I will have to discontinue use of Firefox after many years.

Thank you, Andy

Asked by Andy Jay 1 year ago

Last reply by FredMcD 1 year ago

  • Archived

Impossible de sauvegarder des pages

Bonjour , suite à la réinstallation complète du système BigSur 11,2,3 il y a quelques jours, Firefox 87,0 (64 bits) ne veut plus sauvegarder des pages, marquer des pages,… (read more)

Bonjour , suite à la réinstallation complète du système BigSur 11,2,3 il y a quelques jours, Firefox 87,0 (64 bits) ne veut plus sauvegarder des pages, marquer des pages, ne veut plus ajouter du sites sur la page d’accueil, ne veux plus rien faire quand il s’agit de sauvegarder quelque chose. Que faire? j'ai chercher partout sans succès. Merci de votre aide. Bien à vous

Asked by YVan RF 1 year ago

Last reply by cor-el 1 year ago

  • Solved
  • Archived

Continue to payment on United Airlines website fails

Continue to Payment on United Airlines website fails. Making a payment for a flight on United Airlines website while using Firefox returns an error message. I am running… (read more)

Continue to Payment on United Airlines website fails.

Making a payment for a flight on United Airlines website while using Firefox returns an error message. I am running Firefox 87.0 on a MacBook Pro that is running Mac OS Big Sur 11.2.3. The problem started approximately one week ago. If this is not resolved I will have to discontinue use of Firefox after many years. Thank you, Andy

Asked by Andy Jay 1 year ago

Answered by FredMcD 1 year ago

  • Archived

Intermittent problems with video playing

Recently I installed an upgrade and since then I can't play youtube videos embeded on pages or straight from youtube. I get the message: 'Did Not Connect: Potential Secu… (read more)

Recently I installed an upgrade and since then I can't play youtube videos embeded on pages or straight from youtube. I get the message: 'Did Not Connect: Potential Security Issue

Firefox detected a potential security threat and did not continue to www.youtube.com because this website requires a secure connection.

What can you do about it?

www.youtube.com has a security policy called HTTP Strict Transport Security (HSTS), which means that Firefox can only connect to it securely. You can’t add an exception to visit this site.'

I also can't play videos from an online course I have been doing for weeks and a webinar series but at the beginning of the webinar series a few days ago I could. I'm now getting the message: "The media could not be loaded, either because the server or network failed or because the format is not supported."

I'm having to use Chrome to access all these things and I hate Chrome. I'm not tech savy so please help.

Asked by lanmclen 1 year ago

Last reply by strafy 1 year ago

  • Archived

not able to provide email address when requested

When on a website, filling out an application,etc and they ask me to provide an email address, even though I type it in the box provided it doesn't register. This has st… (read more)

When on a website, filling out an application,etc and they ask me to provide an email address, even though I type it in the box provided it doesn't register. This has started to happen within the last 2-3 weeks and it prevents me from filling out forms and applications that ask for my email address or even an alternate email address. The box will simply light up and keep telling me to provide an email address and therefore won't allow me to finish the application and/or form. If I go to Safari, I can successfully accomplish the task. So I know it's something in Firefox that's causing this to happen. Please help.

Asked by jkkirchner 1 year ago

Last reply by FredMcD 1 year ago

  • Archived

Capture the shift key when pressed

I am writing a program that requires me to detect when a shift key is pressed and do something. Something like window.addEventListener('keydown', event => console.log… (read more)

I am writing a program that requires me to detect when a shift key is pressed and do something. Something like

window.addEventListener('keydown', event => console.log(event), false); // expect to see an event logged to console when pushing the "shift" key

This works great on all browsers except Firefox. "alt" and "fn" keys are also not able to be detected on Firefox. Is there some sort of advanced security settings I can disable to let me capture these things?

Thanks in advance.

Asked by codyb29 1 year ago

Last reply by codyb29 1 year ago

  • Archived

Printing cuts off content in some pages

While I appreciate the recent improvements to the Firefox Print interface and features, there are still lingering formatting issues that have existed for a very long time… (read more)

While I appreciate the recent improvements to the Firefox Print interface and features, there are still lingering formatting issues that have existed for a very long time. The most common issue is that portions of content get cut off between pages. Here is one example:

https://www.nolas.com/home/#menus - click FOOD category near top - open Print (does not matter if "Save to PDF" or printer is selected) - default print settings

In the print preview (left side), printed page or saved PDF there are missing parts of text: - beginning of page 4 cuts off from "SHARE PLATES" to half-way through the first item's description. - top of page 8 (under "NOLA CLASSICS") one of the 6 items is missing entirely.

This issue remains even when using different scale factors.

Tested on current software: - Firefox 86.0.1 (new profile) - macOS 10.12 -through- 10.15

Asked by macguyver 2 years ago

Last reply by macguyver 1 year ago

  • Archived

Default search engine does not exist

When I go to firefox preferences and then go to "search," I try to click on the arrow below "default search engine" but nothing comes up. When I try to search in the add… (read more)

When I go to firefox preferences and then go to "search," I try to click on the arrow below "default search engine" but nothing comes up. When I try to search in the address bar, it takes me to websites named after the first word I typed. When I tried searching in a separate tool bar, I'd type something, hit enter, and nothing would happen. Please help, this is very annoying because whenever I want to search something I have to type google and then type my question in on the actual google website.

Asked by mimdoc96 1 year ago

Last reply by Terry 1 year ago

  • Archived

Removing the text description of symbols on a web page

On numerous web pages, the text description of a symbol obscures other info on the page. For example, the eye symbol to toggle on/off a password visual in a sign on block… (read more)

On numerous web pages, the text description of a symbol obscures other info on the page. For example, the eye symbol to toggle on/off a password visual in a sign on block is obscured or covered by the word "SHOW". How do I remove these text descriptions?

Asked by bayfly 1 year ago

Last reply by cor-el 1 year ago

  • Solved
  • Archived

Problem loading Google Drive

Hi there, We use GMail/ Calendar/ Drive for our business. On the official account, I am seeing a continuous - multi-day - situation where my Google Drive won't load whe… (read more)

Hi there,

We use GMail/ Calendar/ Drive for our business. On the official account, I am seeing a continuous - multi-day - situation where my Google Drive won't load when I point my browser to it unless I do at least one refresh after getting to Drive and waiting for my list of folders and documents to show up.

In the mean time, the following error shows upon on the bottom left of my screen - "The server encountered an error. Please try again later." - this has persisted for over 2 weeks when I restarted using Fiefox earlier this month. I do not get this error when using Chrome or Safari.

Today, I am also not able to see the user who last modified a document or a folder last, as you can see in the image below.

Please tell me what I can do to fix this issue.

Thanks, Mahesh

Asked by Mahesh Singh 2 years ago

Answered by cor-el 1 year ago

  • Archived

(Malware?) Pop-up keeps appearing on same website

Hi. I am constantly getting this popup (see attached) when on the Nine.com.au site (using Firefox 87.0 on Mac OS 10.14.6). It is only occurring on this particular website… (read more)

Hi. I am constantly getting this popup (see attached) when on the Nine.com.au site (using Firefox 87.0 on Mac OS 10.14.6). It is only occurring on this particular website and only seems to happen when I'm using Firefox as my browser. I've gone to the same site in both Chrome and Safari and the popup doesn't appear. FWIW, the TV network that this website it affiliated with was recently the target of a (suspected State orchestrated) cyber attack - not sure if that's just coincidence and completely unrelated to the issue I'm having: https://www.9news.com.au/national/nine-network-hit-by-cyber-attack-threatening-news-services-nationwide/c653fe12-a5c4-4da8-9a33-b902f1325eed Obviously I haven't clicked through on the popup, I just close it each time, but it's getting annoying and I can't seem to get rid of it. Thank in advance.

Asked by Stargirl71 1 year ago

Last reply by FredMcD 1 year ago

  • Archived

Searching History

There is a lot to love about Firefox. However, it has perhaps THE worse history searching tools of any browser. You cannot search by date, just "Last 7 Days" or whole m… (read more)

There is a lot to love about Firefox. However, it has perhaps THE worse history searching tools of any browser. You cannot search by date, just "Last 7 Days" or whole months. Even then you cannot see on which date the search was performed: stupid and inexcusable.

Asked by ferrisagency 1 year ago

Last reply by cor-el 1 year ago