Kukhonjiswa imibuzo ethegiwe: Veza yonke imibuzo
  • Kusonjululiwe
  • Okugcinwe kunqolobane

Close Multiple Tabs sub-menu in context menu

In the new version of the Developer Edition the options "close tabs to the right" and "close other tabs" are in a sub-menu named "Close Multiple Tabs" inside the context … (funda kabanzi)

In the new version of the Developer Edition the options "close tabs to the right" and "close other tabs" are in a sub-menu named "Close Multiple Tabs" inside the context menu. Is there's a way to change this so that they will appear directly in the main context menu? I use "close tabs to the right" often and I find this very annoying.

Asked by gershonido 3 iminyaka edlule

Answered by gershonido 3 iminyaka edlule

  • Okugcinwe kunqolobane

Limited Tabs

When you open a web site, a tab is created up top under the "File," "Edit," "View," etc. tabs. And, obviously, if you have more then one site open, they're all there. … (funda kabanzi)

When you open a web site, a tab is created up top under the "File," "Edit," "View," etc. tabs. And, obviously, if you have more then one site open, they're all there. But this week I noticed that with the fourth tab, they stop being visible, and there's arrows on the far left and right. So if you have five or six pages open and you want to go back to the first tab/web site, you have to hit the arrow on the far left to make that tab visible, and then click on the tab.

So they went from one step/click to two, or three, or four! Sometimes I have to click around to find the tab I want. Also, there's times I just want to see if a site/tab is there. Now, I have to click the darn arrow and find it!

Why do they do this? If it aint broke, don't fix it!

I don't want it like this. At all. I want all the tabs there, without any arrows. Just like it always was. How do I get it back to what it was?

Asked by Steve09 1 unyaka odlule

Last reply by Steve09 1 unyaka odlule

  • Kusonjululiwe
  • Ikhiyiwe
  • Okugcinwe kunqolobane

Tabs on Bottom

Hi Running Firefox 71.0 (64 bit) Well seems Firefox has been messing this up again. Anyone have the new work around solution to get my tabs back on the bottom again. T… (funda kabanzi)

Hi

Running Firefox 71.0 (64 bit)

Well seems Firefox has been messing this up again.

Anyone have the new work around solution to get my tabs back on the bottom again. They were fine this morning then shut down and went out to lunch and when I came back they were back on the top again after months of being where I wanted them below my bookmark bar.

Thoughts on this?

Thanks Dave

Asked by scottish2 4 iminyaka edlule

Answered by cor-el 4 iminyaka edlule

  • Okugcinwe kunqolobane

tab deliminators

I am currently on version 110 of firefox. It is driving me crazy how there is no physical object or deliminator between tabs. they all just blend in. Is there any way to… (funda kabanzi)

I am currently on version 110 of firefox. It is driving me crazy how there is no physical object or deliminator between tabs. they all just blend in. Is there any way to add the "|" (pipe command) between the tabs so they have some sort of separation?

thanks

Asked by LT72884 1 unyaka odlule

Last reply by cor-el 1 unyaka odlule

  • Okugcinwe kunqolobane

Autoplay is blocked when opening link in New Tab without switching to it

So, despite selecting "Allow Audio and Video" in the Site Preferences, "AUTOPLAY BLOCKED" continues to show on a tab, and it only goes away once I access the tab. This pa… (funda kabanzi)

So, despite selecting "Allow Audio and Video" in the Site Preferences, "AUTOPLAY BLOCKED" continues to show on a tab, and it only goes away once I access the tab. This particularly happens on Youtube media.

You may find attached to this question an image of my about:config settings.

What further can be done to fix this?

Asked by icywiddow 1 unyaka odlule

Last reply by icywiddow 1 unyaka odlule

  • Okugcinwe kunqolobane

"Open previous windows and tabs" no longer working

The option to restore tabs and windows is no longer working for me. I normally have a dozen tabs I work thru every day. Yesterday when I shutdown Firefox, all those tab… (funda kabanzi)

The option to restore tabs and windows is no longer working for me. I normally have a dozen tabs I work thru every day. Yesterday when I shutdown Firefox, all those tabs were there. Today when I open Firefox it only had to single Firefox default homepage. Checking under History there is no option to restore previous tabs, and the recently closed tabs was empty.

To test, I opened an IMDB page and pinned it. I then went to Wikipedia. This gave me a pinned and unpinned tab. I shutdown Firefox via the "X" to close the window. When I restarted Firefox there was only the default homepage. Neither IMDB nor Wikipedia showed up under recently closed tabs and no option to restore the previous session was available.

I have operated Firefox this way for several years. I don't know why this behavior is no longer being supported.

Asked by kesrith1 1 unyaka odlule

Last reply by Paw_typist 7 izinyanga ezidlule

  • Okugcinwe kunqolobane

after upgrading to ff110 problem with css regarding browser tabs

Appreciate help for the following: 1. these codes don't work anymore in FF 110: #tabbrowser-tab[first-visible-tab="true"] { margin-left: 3px !important; } 2. Also … (funda kabanzi)

Appreciate help for the following: 1. these codes don't work anymore in FF 110: #tabbrowser-tab[first-visible-tab="true"] { margin-left: 3px !important; }

2. Also this one for Tab Separators , works ok except , the "last tab separator on the right" disappeared , I mean the left is visible but the right side of the tab has no separator :

.tab-content {
position: relative !important;
overflow: hidden !important;
--separator-color: rgba(255,255,255,0.4);
}

.tab-content::before,
.tab-content::after {
content: '' !important;
display: block !important;
position: absolute !important;
background-color: var(--separator-color) !important;
width: 1px !important;
height: 28px !important;
transform: translateY(24px) !important;
opacity: 0 !important;
transition: opacity 0.2s ease !important;
}

.tab-content::before {
left: 0 !important;
}

.tab-content::after {
right: 0 !important;
}

.tabbrowser-tab[visuallyselected][style*=transform]+.tabbrowser-tab[style*=transform] .tab-content::after {
opacity: var(--tab-separator-opacity) !important;
}

.tabbrowser-tab[style*=transform]:not([visuallyselected]) .tab-content::before,
.tabbrowser-tab[style*=transform]+.tabbrowser-tab:not([visuallyselected]) .tab-content::before {
opacity: var(--tab-separator-opacity) !important;
}

.tabbrowser-tab:not([visuallyselected]):not(:hover):not([multiselected])+.tabbrowser-tab:not([visuallyselected]):not(:hover):not([multiselected]) .tab-content::before {
opacity: var(--tab-separator-opacity) !important;
}

#tabbrowser-tabs[hasadjacentnewtabbutton]:not([overflow]) .tabbrowser-tab[last-visible-tab]:not([visuallyselected]):not(:hover):not([multiselected]) .tab-content::after {
opacity: var(--tab-separator-opacity) !important;
}

#tabbrowser-tabs[overflow] .tabbrowser-tab[pinned]+.tabbrowser-tab:not([pinned]) .tab-content::before {
opacity: 0 !important;
}

Any help appreciated Thanks look4

Asked by look4 1 unyaka odlule

Last reply by look4 1 unyaka odlule

  • Kusonjululiwe

Why do tabs/windows refuse to open?

Lately, far too many websites I try to open, simply won't! Sometimes it's via links from my home page, sometimes it's links within various websites, like a newspaper, or… (funda kabanzi)

Lately, far too many websites I try to open, simply won't! Sometimes it's via links from my home page, sometimes it's links within various websites, like a newspaper, or social media, just whatever, no rhyme nor reason, nor consistency. Even when I manually input the url, nothing happens, the browser just sits there, nothing happens. I've restarted, I've refreshed websites, clicked on "open in new tab/window", nothing gets it to work.

Asked by StevenCee 4 izinyanga ezidlule

Answered by zeroknight 3 izinyanga ezidlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Firefox 113 - tab bar moved to above tool bar

I've just installed Firefox 113.0 and my tab bar is now above the toolbar and bookmarks bar. Up until 112, the tab bar was below the bookmarks bar. I have no changed anyt… (funda kabanzi)

I've just installed Firefox 113.0 and my tab bar is now above the toolbar and bookmarks bar. Up until 112, the tab bar was below the bookmarks bar. I have no changed anything in UserChrome and in fact that file is still dated 2020. I've searched but haven't found an explanation. Anyone know what changed or is this just a bug? Thanks

Asked by bobbd 10 izinyanga ezidlule

Answered by cor-el 10 izinyanga ezidlule

  • Okugcinwe kunqolobane

How to recover tabs lost when FF 100.0.2 crashed?

Hello, When FF on my Windows 10 machine crashed FF asked if I wanted to refresh FF. I said yes, and FF reopened as usual with all my tabs. After I closed and reopened … (funda kabanzi)

Hello,

When FF on my Windows 10 machine crashed FF asked if I wanted to refresh FF. I said yes, and FF reopened as usual with all my tabs. After I closed and reopened FF the next time, it reopened without any of my tabs. I then discovered that FF had unchecked the “Startup Open previous windows and tabs” box, which I had previously religiously monitored to be sure it was checked. So I lost all my previous tabs.

In my sessionstore-backups folder I found the file upgrade.jsonlz4-20 as last in a list of three more recent file names. I then dropped the file upgrade.jsonlz4-20 in the scrounger tool on this site: https://www.jeffersonscher.com/ffu/scrounger.html. It expanded in the big window, and when I clicked on Save uncompressed JSON as text, I see all the URLs run together in a text file.

How can I use this information to recover my tabs, please? If so, how? Or is there a better way to use the Scrounger – or another – tool?

Otherwise if I delete the three more recent file names in the list above the upgrade.jsonlz4-20 file, and restart FF will I recover the missing tabs? If so would I the check or uncheck the Startup Open previous windows and tabs box?

Lastly, can I restore my missing tabs using Windows’ “System restore” tool from 3 days before the crash?

Many thanks for any help!

Asked by Rasika Michael 1 unyaka odlule

Last reply by Rasika Michael 1 unyaka odlule

  • Okugcinwe kunqolobane

restore session failure

Today when I closed Firefox and reopened it the option to restore previous session was not shown, as a result I have lost half my pinned tabs (I managed to redo the rest … (funda kabanzi)

Today when I closed Firefox and reopened it the option to restore previous session was not shown, as a result I have lost half my pinned tabs (I managed to redo the rest from bookmarks) which were vital. I tried going into history but the option was greyed out.

This happened yesterday too but after redoing half my tabs I went to open gmail and it restored all my tabs, I tried the sane today but it failed so am stuck with half my tabs.

Please do not suggest I use synch as I only use one device.

Asked by a.frayed.knot.mate 6 izinyanga ezidlule

Last reply by cor-el 6 izinyanga ezidlule

  • Okugcinwe kunqolobane

Tabbs on Bottom

Woke up this morning, opened up Firefox and the Trolls have been busy rearranging things during the night. My profile manager disappeared, but I was able to fix that. N… (funda kabanzi)

Woke up this morning, opened up Firefox and the Trolls have been busy rearranging things during the night. My profile manager disappeared, but I was able to fix that. Now my tabs are out of place and I cannot find what to do to put the Tabs back on bottom, "The way they Should be". Help, please.

Anne,

Also, I am not real computer literate, so draw pictures if necessary.

Thank you.

Asked by Anne's Place 1 unyaka odlule

Last reply by Anne's Place 1 unyaka odlule

  • Okugcinwe kunqolobane

How do I turn off lazy loading for tabs definitely and irrevocably?

I can't turn off lazy loading. I set the following about:config settings to "false": browser.sessionstore.restore_on_demand browser.sessionstore.restore_tabs_lazily brow… (funda kabanzi)

I can't turn off lazy loading. I set the following about:config settings to "false":

browser.sessionstore.restore_on_demand browser.sessionstore.restore_tabs_lazily browser.sessionstore.restore_pinned_tabs_on_demand

Nothing changes. When I start Firefox, it simply won't load all tabs. How do I fix this?

Asked by Lunger 6 izinyanga ezidlule

Last reply by cor-el 2 izinyanga ezidlule

  • Kusonjululiwe

Backup Your Firefox Data - Open Tabs

With 'Back up your Firefox data' it says it saves all open tabs. What is meant by 'open' tabs? Is it tabs that I have clicked on during my session? I have just over 30… (funda kabanzi)

With 'Back up your Firefox data' it says it saves all open tabs.

What is meant by 'open' tabs? Is it tabs that I have clicked on during my session?

I have just over 300 tabs, will Firefox save all of those tabs in the cloud or only the tabs I clicked on during a session?

Asked by Kraftwerk 3 izinyanga ezidlule

Answered by jscher2000 - Support Volunteer 3 izinyanga ezidlule

  • Okugcinwe kunqolobane

How To Open New Private Tab Along Side of an Opened Private Tab

Hello, I want open a private tab along side of an opened private tab . But every time it opens in an new window. So, i am shifting from chrome. In chrome when we try to o… (funda kabanzi)

Hello, I want open a private tab along side of an opened private tab . But every time it opens in an new window. So, i am shifting from chrome. In chrome when we try to open a link in private tab all the private tabs opens in the same window. So, I want to is this feature available in Firefox or not. If have how can I turn it on. Thanks.

Asked by Dipto 1 unyaka odlule

Last reply by jscher2000 - Support Volunteer 1 unyaka odlule

Lost tabs sent from other device in Firefox when force-closing browser

I recently sent a lot of tabs from my phone to my computer. However, when I started Firefox on my computer, since Firefox tried to load the content of all sent tabs immed… (funda kabanzi)

I recently sent a lot of tabs from my phone to my computer. However, when I started Firefox on my computer, since Firefox tried to load the content of all sent tabs immediately instead loading them lazily (which I think probably should be the default behavior), it took a very long time for Firefox to display even the tab that was currently selected, and I therefore decided to kill Firefox and reopen it, in the hope that all new tabs would load lazily. Instead, when I reopened Firefox, none of the new tabs where there anymore; it was as if they had never been sent. I would like to get them back, but I have no idea how to. Does anyone know if that is possible and, if so, how?

Asked by krikru 3 izinyanga ezidlule

Last reply by cor-el 3 izinyanga ezidlule

  • Okugcinwe kunqolobane

Recover lost tabs

Earlier today I changed my settings in "Privaty & Security" to "Clear history when Firefox closes". In that setting I selected to only delete "Browsing and download h… (funda kabanzi)

Earlier today I changed my settings in "Privaty & Security" to "Clear history when Firefox closes". In that setting I selected to only delete "Browsing and download history."

I assumed this would just delete my browsing history from the URL bar, but now after I closed Firefox, it also deleted all my tabs!! There were many important tabs that I don't want to lose. But I also can't find them under 'recently closed tabs', and I also tried a solution from this forum, namely to find the recovery file and upload them to https://www.jeffersonscher.com/ffu/scrounger.html -- but they don't contain my old tabs either!

Is there still something I can do to recover my lost tabs??

Asked by JelleAms 1 unyaka odlule

Last reply by cor-el 1 unyaka odlule

  • Kusonjululiwe
  • Ikhiyiwe
  • Okugcinwe kunqolobane

New tab "+" missing from tab bar with with 20 tabs or more

After the latest update (117.0 64-bit) I now do not see the '+' sign in the tab bar. I have 40 tabs open (please, no negativity - it's always worked for me), but if I cl… (funda kabanzi)

After the latest update (117.0 64-bit) I now do not see the '+' sign in the tab bar. I have 40 tabs open (please, no negativity - it's always worked for me), but if I close all of the tabs it reappears. Re-open the original 42 tabs and it's gone again. Close them and it reappears, etc. Now for the fun bit: starting from scratch with a new window - the '+' is there, but open 20 more tabs and it goes.

Asked by trgz 6 izinyanga ezidlule

Answered by cor-el 6 izinyanga ezidlule

  • Kusonjululiwe

Tabs from previous session no longer open on startup.

I'm running version 118.02.2 (64-bit) of Firefox on Windows 12. I *always* have the 'Open previous windows and tabs' checked. Starting yesterday, Firefox opens with nothi… (funda kabanzi)

I'm running version 118.02.2 (64-bit) of Firefox on Windows 12. I *always* have the 'Open previous windows and tabs' checked. Starting yesterday, Firefox opens with nothing other than a blank page. Luckily for me, this has happened in the past and I have a Bookmarks Menu folder with my default tabs saved. Even so, it's still frustrating.

Asked by CdnBookLover 5 izinyanga ezidlule

Answered by cor-el 5 izinyanga ezidlule