Отображение вопросов с тегом: Показать все вопросы

make translate to translate ONLY SELECTED sites

hi the translate fucion in firefox is vry usefull, but i want to NOT TRANSLATE ANYTHING EXCEPT sites i select only i.e. surfing around german site.. .leave it german, bu… (читать ещё)

hi the translate fucion in firefox is vry usefull, but i want to NOT TRANSLATE ANYTHING EXCEPT sites i select only

i.e. surfing around german site.. .leave it german, but i if i am interest in "german.de/talkshow" select it and translate only this

i see option to translate EVERYTHING and use some exception, but its the opposite of what looking for

thanx christos

Задан ploufus 2 дня назад

Последний ответ от ploufus 59 минут назад

moz-extension keeps loading at startup but no related extension appears in my extension list

Hi and thanks for your help. I was playing around with my DMARC settings for my new site and was looking around at who was hosting my WordPress domain for http://ibizign… (читать ещё)

Hi and thanks for your help. I was playing around with my DMARC settings for my new site and was looking around at who was hosting my WordPress domain for http://ibizignite.com, and Google directed me to GoDaddy. That was wrong. However, in my fooling around, somehow GoDaddy and this associate Westechnologies keeps popping up when I open up my browser after booting up my computer, and I cannot get rid of it. I don't know where to find it, because there is no associated extension anywhere in my extension list.

Here is the address that came up: moz-extension://dfdaa01e-fa7e-4241-8590-a19edb2ec40f/data/blocked/index.html?url=https://www.godaddy.com/forsale/www.westechnologies.com?utm_source=TDFS_BINNS&utm_medium=parkedpages&utm_campaign=x_corp_tdfs-binns_base&traffic_type=TDFS_BINNS&traffic_id=binns&

I tried to use another add-on to block it, and it does, but the darn site keeps appearing every startup after a fresh boot, and neither Westechnologies not GoDaddy appear anywhere in my Zone Map or anywhere else in my registry. Can anyone help me get rid of it please?

Задан iBizIgnite 1 неделю назад

Последний ответ от jscher2000 - Support Volunteer 2 часа назад

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… (читать ещё)

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 */
}

Задан Slouch 10 часов назад

Double icons on Stop & Reload buttons when using custom icons

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my St… (читать ещё)

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my Stop icon.

Please see attached image and animation.

Any idea if this is a minor bug?

Below is my code to split the Reload button into Reload & Stop buttons, then to add text to the navigation buttons, and finally to add icons to the navigation buttons.

This anomaly happens whether or not I split the Reload & Stop buttons. With just a single Reload button, I'm also seeing the default Reload icon appear over my own.

Thank you.

/* ---------- SPLIT RELOAD BUTTON INTO RELOAD & STOP ------------- */
#reload-button, #stop-button {
   display: inherit !important; 
} 
#reload-button > .toolbarbutton-icon {
  -moz-appearance: none !important; 
}


/* ------------ ADD TEXT LABELS TO NAVIGATION TOOLBAR BUTTONS --------------- */
/* Shows both icon and label for toolbarbuttons */
toolbar .toolbarbutton-1[label]{
  flex-direction: column;
  align-items: center !important;
}
toolbar .toolbarbutton-1[label]:not([disabled]):hover{ background-color: var(--toolbarbutton-hover-background) !important; }
toolbar .toolbarbutton-1[label] > .toolbarbutton-icon,
toolbar .toolbarbutton-1[label] > .toolbarbutton-badge-stack{
  padding: var(--toolbarbutton-inner-padding) !important;
  padding-bottom: 0px !important;
  height: calc(var(--toolbarbutton-inner-padding) + 16px) !important;
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text {
  display: flex !important;
  min-height: 16px !important;
  padding-top: 3px !important;
  padding-bottom: 6px !important;
  background-color: transparent !important;
  overflow: hidden;
  width: 9ch; /* changes space between buttons */
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text::before{
  margin-inline: auto;
 }
:root:not([uidensity="compact"]) toolbar .toolbarbutton-1[label] > .toolbarbutton-text{ padding: 2px !important; }


/* ------------ ADD CUSTOM ICONS TO NAVIGATION TOOLBAR BUTTONS ----------- */
#back-button {
   list-style-image: url("image/back.png") !important;
   padding-top: 8px !important;
}
#back-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#forward-button {
   list-style-image: url("image/forward.png") !important;
   padding-top: 8px !important;
}
#forward-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#reload-button {
   list-style-image: url("image/reload.png") !important;
   padding-top: 8px !important;
}
#reload-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#stop-button {
   list-style-image: url("image/stop.png") !important;
   padding-top: 8px !important;
}
#stop-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#print-button {
   list-style-image: url("image/print.png") !important;
   padding-top: 8px !important;
}
#print-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#home-button {
   list-style-image: url("image/home.png") !important;
   padding-top: 8px !important;
}
#home-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}

Задан Slouch 2 дня назад

Последний ответ от Slouch 1 день назад

The pause button on the keyboard doesn't stop the video in Firefox.

When I press the pause button on my keyboard, it doesn't stop the YouTube video like it used to. I'm not sure why it stopped working. I've checked the key, and it works f… (читать ещё)

When I press the pause button on my keyboard, it doesn't stop the YouTube video like it used to. I'm not sure why it stopped working. I've checked the key, and it works fine in Chrome.

Задан Robert Clave 4 дня назад

Последний ответ от Robert Clave 12 часов назад

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… (читать ещё)

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; }

Задан Slouch 12 часов назад

Lost personalization of Windows10 and Firefox after a power failure.

Re-booting following a power failure, I entered my pin & received a message something like, "Would you like to sign out? If you continue you risk losing personal data… (читать ещё)

Re-booting following a power failure, I entered my pin & received a message something like, "Would you like to sign out? If you continue you risk losing personal data. You can protect your data by signing out, then signing in again". So I signed out, then signed in again and the boot proceeded but it was like a brand new installation. Desktop background was Windows blue, about half my desktop icons gone, all default apps reset, in Firefox all my plug-ins/extensions gone, all my bookmarks gone. And Windows Settings now won't let me set Firefox as the default browser and when FF offers to set itself as the default browser, that doesn't work either.

I've got the feeling this is some kind of identity issue gone awry but I don't know how to fix it. Hoping someone on this forum recognizes the problem, and knows a solution. Thanks for any help offered.

Задан vimy100 17 часов назад

New Tab Addon Button Missing

i use New Tab Override, reinstalled my software, firefox, and lost the button to get a new tab that goes on the address bar. its no longer in customize. ive removed the a… (читать ещё)

i use New Tab Override, reinstalled my software, firefox, and lost the button to get a new tab that goes on the address bar. its no longer in customize. ive removed the addon and put it back on, started in troubleshoot mode, disabled all other addons, and it never showed back up

can someone help, the guy who made it wont help

Задан tunescool 5 месяцев назад

Последний ответ от PMDonovan 22 часа назад

Blue progress bar no longer showing after clicking on download icon in Firefox

Some months ago, Firefox stopped displaying the blue progress bar that would normally show once you clicked on the download icon. You still see the usual file info but n… (читать ещё)

Some months ago, Firefox stopped displaying the blue progress bar that would normally show once you clicked on the download icon. You still see the usual file info but now the progress bar of the download is gray instead of blue and is extremely hard to see. You have to look closely but in the first screenshot you can see where the shade of gray of the progress bar changes, just under the "6" of the "x86" part of the file name. But if you click on the "show all downloads" link, then the blue progress bar will show as usual for any in-progress downloads in the Library window, as shown in the second screenshot.

It isn't a huge issue but is still annoying when you just want to quickly see the progress of downloads in Firefox. I haven't changed any of the colors in Firefox or in Windows for that matter, I'm currently running Windows 10. All other dialog boxes, windows, etc. all display normally on my system. Just curious if anyone else is having this problem and hopefully a future update can take care of it.

Thanks very much!

Задан jbb2004g 2 дня назад

Последний ответ от jbb2004g 1 день назад

FireFox homepage background image

Hello there, Iam facing a problem with changing Firefox homepage background. I tried every solution, tutorial, oldposts etc. nothing seems to work, here is what I tried. … (читать ещё)

Hello there, Iam facing a problem with changing Firefox homepage background. I tried every solution, tutorial, oldposts etc. nothing seems to work, here is what I tried. -1- The chrome folder is in the right folder. -2- the naming of both CSS files userChrome, userContent. -3- enabled CSS files at startup -4- search for both CSS files in the browser toolbox for some reason I cannot find both CSS files, even though they are in the chrome directory. Also, I have 2 chrome folders one of them is located here. "AppData\Roaming\Mozilla\Firefox\Profiles\shaf5qn0.default-release\storage\permanent\chrome" the other one I created myself which is here "AppData\Roaming\Mozilla\Firefox\Profiles\shaf5qn0.default-release\chrome" I tried to delete the first one but I cant, I get an error that this file is being used even though I did close Firefox. What I am missing here?

Задан Yassen Redwan 3 месяца назад

Последний ответ от Agent virtuel 1 день назад

is there any Collections where category wise someone can save web sites

is there any Collections where category wise someone can save web sites ? Presently, I do not find any. Hence, i am using Pocket and keeping there creating Lists, b… (читать ещё)

is there any Collections where category wise someone can save web sites ?

Presently, I do not find any. Hence, i am using Pocket and keeping there creating Lists, but it is not so cosy kind, Shall request Firefox team to create Collections in Firefox on windows 11

Задан scy321 2 дня назад

Последний ответ от cor-el 1 день назад

Specific CSS rule in my userChrome.css doesn't work.

Hi thanks for clicking. I'm on Linux, Zorin OS, which is Ubuntu based if I'm not mistaken, very new to Linux. Anyway, I've made a userChrome.css and done some changes I… (читать ещё)

Hi thanks for clicking.

I'm on Linux, Zorin OS, which is Ubuntu based if I'm not mistaken, very new to Linux.

Anyway, I've made a userChrome.css and done some changes I like to Firefox. It has been working fine until I tried to change the tab bar's overflow shadows when there are more tabs than there is space in the bar.

The rest of the css edits I've made in userChrome.css works fine but this overflow shadow reference Firefox just doesn't grab. I can live edit with the Toolbox and then it works fine, but when opening Firefox as default this css definition is as if gone.

Image 1: after live edit with Toolbox Image 2: before live edit with Toolbox Image 3: my userChrome.css

What can I do to fix this?

Thanks / p

Задан protocol 2 дня назад

Последний ответ от cor-el 2 дня назад

Icon of Firefox Multi-Account Containers won't show up on top of screen

Hi, I've been trying to get the Multi-Account Containers Add On to work on my computer for quite some time. Would be very handy for me. When I add the Add On to my browse… (читать ещё)

Hi, I've been trying to get the Multi-Account Containers Add On to work on my computer for quite some time. Would be very handy for me. When I add the Add On to my browser the icon on the top right of the screen just won't show up. Don't know what I've been doing wrong...? How can I access the container settings someway else? I've made changes to my FF settings in regards to privacy via the recommendation from Sun Knudsen but don't really see an issue here. Thanks in advance!

macOS 10.15.7, Firefox 125.0.3

Задан Chrstph 3 дня назад

Последний ответ от cor-el 2 дня назад

Spell Checker still does not work even with multiple dictionaries and language packs installed and enabled, plus "Check your spelling as you type" ticked

Title, The option to switch languages is also not present in the right click menu (see attached image) I'm really unsure how to figure this out so any advice would be g… (читать ещё)

Title,

The option to switch languages is also not present in the right click menu (see attached image)

I'm really unsure how to figure this out so any advice would be greatly appreciated.

Thank you for your time.

Задан eftdlcoy 5 дней назад

Последний ответ от cor-el 2 дня назад

default startup page keeps changing

The attached photo shows the startup page that appeared today, yesterday that page had 12 of my most frequent websites loaded in place of the ones you see now. This page … (читать ещё)

The attached photo shows the startup page that appeared today, yesterday that page had 12 of my most frequent websites loaded in place of the ones you see now. This page keeps changing on me and it's infuriating to have to remake it every few months.

What is going on??

AB

Задан AB 3 дня назад

Последний ответ от zeroknight 3 дня назад

Homepage

I downloaded the new update this morning and I cannot separate my categories any longer on my home page. I keep them in categories on the 4 separate rows and then separa… (читать ещё)

I downloaded the new update this morning and I cannot separate my categories any longer on my home page. I keep them in categories on the 4 separate rows and then separate them by skipping a square. I cannot do that any longer and do not like the jumble of the homepage now. How can I keep the blank spaces that are located at the bottom of the rows to separate my categories?

Задан ch 1 неделю назад

Последний ответ от ch 3 дня назад

  • Решено

userChrome.css - Help With Customizing Tabs (part 2)

Hi All, I would like the content area of my tabs moved up so that the box is filled with the actual tab color, without the white background, and also the text will be ve… (читать ещё)

Hi All,

I would like the content area of my tabs moved up so that the box is filled with the actual tab color, without the white background, and also the text will be vertically centered. Right now, the text is dropping too close to the bottom of the tab.

Had this looking very nice in FF 88 with the same code, as you can see in the attached images, but it seems to render differently in FF 115 ESR and FF 125.

Below is some code I used to style the tabs, but the problem exists without this code as well.

I've also included some "tabs on bottom" code I'm using as well at the very bottom.

Would sure like to get those Classic Toolbar Buttons working again too (shown in the second image), but that will be a later request :)

Any help is appreciated.

Thanks!

/* Highlight non-selected tabs on mouseover */ .tabbrowser-tab:not([selected]):hover .tab-content {

  background-color: #dbe3eb !important;

}

  1. TabsToolbar {
 -moz-box-ordinal-group: 3 !important;
 padding-top: 0 !important;
 padding-bottom: 0 !important;
 height: 25px !important;
 background-image: url("bkmr_back.gif") !important;
 border-top: 1px solid #afc0d2 !important;
 border-bottom: 1px solid #8698aa !important;

}

/* Background color of selected tab */ .tab-background[selected="true"] {

   background-attachment: none!important;
   background-image: none!important;
   background-color: #eef5fc !important;

}

/* Background color of non-selected tab */ tab-background:not([selected]) {

   color: #000000 !important;
   background-color: #c7d3e0 !important;

}

/* Border color & bold text for selected tab */

  1. TabsToolbar .tabbrowser-tab[selected] {
   font-weight: 700 !important;
   color: #000 !important;
   border-top: 1px solid #8698aa !important;
   border-left: 1px solid #8698aa !important;
   border-right: 1px solid #8698aa !important;

}

/* Border color & normal text for non-selected tab */

  1. TabsToolbar .tabbrowser-tab:not([selected]) {
   font-weight: 600 !important;
   color: #000 !important;
   border-top: 1px solid #afc0d2 !important;
   border-left: 1px solid #afc0d2 !important;
   border-right: 1px solid #afc0d2 !important;

}

/* -------------- TABS ON BOTTOM --------------- */ /* TABS: below nav-bar - updated for 89+ | 108+ | 113+ */

  • |*:root {
 --tab-toolbar-navbar-overlap: 0px !important;
 --tab-min-height: 25px !important; /* adjust */
 --tab-min-width:  80px !important; /* adjust */

}

  1. navigator-toolbox #TabsToolbar {
 position: absolute !important;
 bottom: 0;
 /* height: 27px !important; */
 height: 28px !important;
 width: 100vw !important;

}

/* navigator-toolbox - padding */

  • |*:root:not([chromehidden*="toolbar"]) #navigator-toolbox {
 position: relative !important; /*89+*/
 padding-bottom: calc(var(--tab-min-height) + 1px) !important; /*adjust*/
 background-color: var(--toolbar-bgcolor) !important;

}

/* TABS: HEIGHT */

  1. tabbrowser-tabs,
  2. tabbrowser-arrowscrollbox,
  3. tabbrowser-tabs .tabbrowser-tab {
 min-height: var(--tab-min-height) !important;
 max-height: var(--tab-min-height) !important;

}

.tab-stack {

 height: var(--tab-min-height) !important;

}

  1. TabsToolbar {
 height: var(--tab-min-height) !important;
 margin-bottom: 0px !important;
 /* box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important; /*optional*/
 /* background-color: var(--toolbar-bgcolor) !important; */
 color: var(--toolbar-color) !important;

}

/* drag space */ .titlebar-spacer[type="pre-tabs"], .titlebar-spacer[type="post-tabs"] {

 width: 40px;

}

/* Override vertical shifts when moving a tab */

  1. navigator-toolbox[movingtab] > #titlebar > #TabsToolbar {
 padding-bottom: unset !important;

}

  1. navigator-toolbox[movingtab] #tabbrowser-tabs {
 padding-bottom: unset !important;
 margin-bottom: unset !important;

}

  1. navigator-toolbox[movingtab] > #nav-bar {
 margin-top: unset !important;

}

/* hide indicators and caption buttons */

  1. TabsToolbar .private-browsing-indicator {display: none !important;}
  2. TabsToolbar .accessibility-indicator {display: none !important;}
  3. TabsToolbar .titlebar-buttonbox-container {display: none !important;}
  4. TabsToolbar #window-controls {display: none !important;}

/* -------------- TABS ON BOTTOM --------------- */

Задан Slouch 6 дней назад

Дан ответ Slouch 3 дня назад