Recent content by das10


  1. Firefox update restart issue

    There is bug report here for that kind of issue: https://bugzilla.mozilla.org/show_bug.cgi?id=1941931 At the end of the report there is an interim solution which appears to work for some & not others - by toggling the about:config setting of app.update.multiSessionInstallLockout.enabled to...
  2. How to use findstr on a hidden Ollama app.log file?

    Is there also a missing closing quote for the search string "OLLAMA_MODEL: ? Also, to try & copy the hidden file, first try and remove its Attributes with Attrib, then after the copy you can reverse the Attrib if required on the source/destination file. try: rem This file seems to be hidden...
  3. Solved findstr : Why not found?

    Is it possible that the second file might be encoded using UTF-16, in which case findstr won't work with it? Instead, you could try "find" which appears to detect the presence/absence of "Mode=", or findtsr using regex also appears to work on UTF-16 files (with awkward string input & output!) ...
  4. Solved Google Chrome will not install

    Just in case for anyone else facing this issue currently on Intel / AMD PC's, it appears to be an error on Google's side re. the installer version. https://hothardware.com/news/chrome-wrong-build-error (The Offline Standalone Standard Chrome Setup can also be downloaded from here)...
  5. Recent entries

    This is just for reference: It is possible to add DuckDuckGo with custom search criteria as a default search engine. That way, it is possible to use that customized search engine in the Firefox Default Home page, the URL Search Bar, or from web page context menus. 1. In about:config, create the...
  6. Thunderbird 115: CSS Customization

    @click click; The comment section started at Line 1 got closed off at the end of line 3, not 10, leaving a hanging "*/" at the end of line 10. ....the first instance of "*/" that follows an instance of "/*" closes the comment. https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_syntax/Comments
  7. Thunderbird 115: CSS Customization

    This is what the code for the threadpane you tested shows. Make a backup of your userChrome.css file, and create a new one with just the code you posted, to see if it works. If it does, then there could be an error in your original file (eg. if it is being over-ridden by some other code, or...
  8. Thunderbird 115: CSS Customization

    Try: /* message pane background */ #threadPane > tree-view { background-color: var(--sidebar-background) !important; } (Again use either the variable as shown or use a specific color that you want there). In Cards view, the empty portion of the pane below the messages will work with the...
  9. Thunderbird 115: CSS Customization

    Do you mean the thin lightgrey Vertical line (splitter) ? If so try: /* change color of the folderPane splitter */ #folderPaneSplitter { border-color: var(--sidebar-background) !important; } Use either the variable var(--sidebar-background) or any specific color which you want. For the...
  10. Thunderbird 115: CSS Customization

    I don't think making multiple changes to userChrome.css would cause the issue you mentioned (I make lots of changes to it for testing, and it has never happened to me). The userChrome.css file cannot make any permanent changes to Thunderbird. It only gets loaded when you start Thunderbird - and...
  11. Solved Latest Version of Thunderbird Supernova released

    From March 2025, there will be an ESR as well as Release Channel.... https://thunderbird.topicbox.com/groups/planning/Td58a7d8581e7d60f
  12. Thunderbird 115: CSS Customization

    Apparently, the default font used there does not appear to react to font stretch. But if eg. you use the arial font there, it does do so. eg. if say you use: /* the main info bar (yellow) - also see next section */ #mail-notification-top .infobar { --message-bar-text-color: grey...
  13. Thunderbird 115: CSS Customization

    @LnzMrt; Thanks for sharing your code, and welcome to Elevenforum. I think you can make some of the changes you want re: the colors, but the only way I know to make the bar smaller is by using "transform" with a -ve margin block. Although I don't know how effective that might be in case there...
  14. Solved Does anyone know what this is?

    Google's image search shows only these link results with that image, but those links don't appear to provide any specific answer. Redirecting
  15. Thunderbird - need help with Compose margins

    If everything appears to be working ok, then try: /* 30px padding along the width of the Compose Window */ /* 20px padding at top of the Compose Window */ /* white background inside the padding */ #messageEditor { padding-inline: 30px !important...
Back
Top Bottom