Recommended Posts

Is there a way to move the page loading status poput at the bottom left of the screen? I want it a few pixels up and few to the right, so there's just a little gap.

You can try this:

.statuspanel-label {
  margin: 0 5px 5px !important;
}

It will move it 5px from the bottom and left.

Is there a way to move the page loading status poput at the bottom left of the screen? I want it a few pixels up and few to the right, so there's just a little gap.

statuspanel { 
        position: fixed; 
        bottom:5px;
        left:5px !important;  
}

**edit: Soapy's approach is probably better

You can try this:

.statuspanel-label {
  margin: 0 5px 5px !important;
}

It will move it 5px from the bottom and left.

statuspanel { 
        position: fixed; 
        bottom:5px;
        left:5px !important;  
}

Exactly what I wanted.

Thanks!

Perfect! But what is the function of the first "0"?

.statuspanel-label {
  margin: 0 5px 5px !important;
}

is shorthand for:

.statuspanel-label {
  margin-top: 0 !important;
  margin-right: 5px !important;
  margin-bottom: 5px !important;
  margin-left: 5px !important;
}

Here's a further explanation: http://www.devarticles.com/c/a/Web-Style-Sheets/CSS-shorthand-at-a-glance/4/

.statuspanel-label {
  margin: 0 5px 5px !important;
}

is shorthand for:

.statuspanel-label {
  margin-top: 0 !important;
  margin-right: 5px !important;
  margin-bottom: 5px !important;
  margin-left: 5px !important;
}

Here's a further explanation: http://www.devarticles.com/c/a/Web-Style-Sheets/CSS-shorthand-at-a-glance/4/

Thanks, foxxyn8. Will definitely read your link tomorrow. :)

I posted this in my own topic, but thought I should share it here. This will get your Fx 4 tabs all the way into the title bar and take up all available horizontal space, assuming you've moved the Firefox menu button elsewhere (use one of many extensions):

* Tabs in Title Bar

#main-window[sizemode=normal][tabsontop] #appmenu-button-container {
position: fixed !important;
z-index: 2 !important;
}
#main-window[sizemode=normal][tabsontop] #toolbar-menubar[autohide="true"]{
margin-top:-14px;
-moz-padding-start:70px!important;
}
#main-window[sizemode=normal] #navigator-toolbox[tabsontop] > #toolbar-menubar[autohide] ~ #TabsToolbar {
-moz-padding-start:0px!important;
-moz-padding-end:110px!important;
}

I have yet another question. This one is more related to "content" than to "chrome" but I hope I'll get help!

If I'm viewing a web-page in Fx4, I can select just a bit of the page content by "left-click-hold and drag" with the mouse. If I then right-click, I get a context menu with the option to "View Selection Source". Taking this option opens a new window titled "DOM Source of Selection ..." which shows the source code of the highlighted stuff as well as some code to the left and right (as opposed to ctrl+U which shows source code for an entire page).

I want to know how to tweak the appearance of this page, the "DOM Source of Selection ...". Specifically, I'd like a darker page background with appropriately contrasting text.

I searched userStyles.org but the closest I got was this: http://userstyles.org/styles/37975/about-blank-view-source-dark which helps fix about:blank and about:source (when we hit Ctrl+U on a page).

I have yet another question. This one is more related to "content" than to "chrome" but I hope I'll get help!

If I'm viewing a web-page in Fx4, I can select just a bit of the page content by "left-click-hold and drag" with the mouse. If I then right-click, I get a context menu with the option to "View Selection Source". Taking this option opens a new window titled "DOM Source of Selection ..." which shows the source code of the highlighted stuff as well as some code to the left and right (as opposed to ctrl+U which shows source code for an entire page).

I want to know how to tweak the appearance of this page, the "DOM Source of Selection ...". Specifically, I'd like a darker page background with appropriately contrasting text.

I searched userStyles.org but the closest I got was this: http://userstyles.org/styles/37975/about-blank-view-source-dark which helps fix about:blank and about:source (when we hit Ctrl+U on a page).

try this:

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("view-source:"){

html {background: #111 !important; color: white !important;}

.start-tag, .end-tag {color: violet !important;}

.attribute-name {color: #ddd !important;}

.attribute-value {color: steelblue !important;}

.comment {color: lightgreen !important;}

a {color:blue !important;}

}

try this:

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("view-source:"){

html {background: #111 !important; color: white !important;}

.start-tag, .end-tag {color: violet !important;}

.attribute-name {color: #ddd !important;}

.attribute-value {color: steelblue !important;}

.comment {color: lightgreen !important;}

a {color:blue !important;}

}

Perfect. As usual. :)

The neat thing is that it works for both plain view source (entire page source), and view source for a particular selection.

Just to push my luck, is it possible to get it to wrap to screen width? No big deal if it isn't, but great if it is.

Edit: I fiddled a bit with the colors and squeezed in one more line as well:

/* View Source*/
@-moz-document url-prefix("view-source:"){
html {background: #111 !important; color: #666611 !important; }
::-moz-selection {background-color: #377 !important; color: #000 !important} /* <<< I added this line*/
.start-tag, .end-tag {color: violet !important; }
.attribute-name {color: #444 !important; }
.attribute-value {color: green !important; }
.comment {color: lightgreen !important; }
a {color: #888 !important;}
}

Perfect. As usual. :)

The neat thing is that it works for both plain view source (entire page source), and view source for a particular selection.

Just to push my luck, is it possible to get it to wrap to screen width? No big deal if it isn't, but great if it is.

Sure, just add this to your code:

pre {white-space: pre-line !important; overflow-x: hidden !important;}

or just enable "Wrap Long Lines" in the "View" menu

Is there any way to put the status text in the url bar without using status-4-ever? I'm using Locationbar2 and those 2 addons are not compatible. Much prefer locationbar2 to status-4-ever so if it can be done this way.. Locationbar2 used to have a feature that did that but it was removed for some reason. :wacko:

Two questions for the CSS pros here^^

How can I remove the red middle line in the menu?

57811040.jpg

And is it possible to remove the dropdown marker in the URL bar entirely? If yes, could I also place the bookmarks star where the marker was before?

17465007.jpg

Thanks in advance!^^

Two questions for the CSS pros here^^

How can I remove the red middle line in the menu?

And is it possible to remove the dropdown marker in the URL bar entirely? If yes, could I also place the bookmarks star where the marker was before?

Thanks in advance!^^

#appmenuSecondaryPane { box-shadow: none !important; }

.autocomplete-history-dropmarker.urlbar-history-dropmarker{ display:none !important;}

#star-button { -moz-box-ordinal-group: 2 !important; }

screenhunter11mar271209.png

screenhunter10mar271208.png

#appmenuSecondaryPane { box-shadow: none !important; }

.autocomplete-history-dropmarker.urlbar-history-dropmarker{ display:none !important;}

#star-button { -moz-box-ordinal-group: 2 !important; }

screenhunter11mar271209.png

screenhunter10mar271208.png

Thanks to both of you, the bookmark and dropmarker switch works like a charm and looks wonderful! :D

Just the red line in the menu is still present, the shadow is gone but not the line :(

I had these red lines everywhere in my UI because I use a non default Windows object color, I remember most of the time it was linked to a threeshadow property in Firefox if that helps :pinch:

Noob(ish) question, I enable the Firefox menu instead of the regular menubar on Linux, bookmark icon gets placed next to the home button. That's nice and all, but the icon looks like total crap, and unlike home/back/forward button, it doesn't follow the system icon theme (I've included the text editor in the pic just so you can see how much the bookmark icon feels out of place).

3AgoV.png

Any way of manually changing the icon, or if not, anyone know of a good monochrome icon theme?

Thanks to both of you, the bookmark and dropmarker switch works like a charm and looks wonderful! :D

Just the red line in the menu is still present, the shadow is gone but not the line :(

I had these red lines everywhere in my UI because I use a non default Windows object color, I remember most of the time it was linked to a threeshadow property in Firefox if that helps :pinch:

Do either of these have any effect?

#appmenuPrimaryPane { border-right: 0 !important; }

or

#appmenuSecondaryPane { border-left: 0 !important; }

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • It's amazing that anyone still uses this bloated trash.
    • @Sayan...I have defended you at various points as I hope you know. This headline however is utter trash...shame on you sir!
    • An actual cosmic "Eye of Sauron" had been looking straight at us all along by Sayan Sen Image by Kovin P. Vasquez via Pexels | Not representative An international team of researchers has solved a long-standing mystery surrounding a distant blazar known as PKS 1424+240, helping explain why it produces some of the brightest high-energy gamma rays and cosmic neutrinos ever observed despite appearing to have a relatively slow-moving jet. The findings were published on June 6 in Astronomy & Astrophysics Letters. The study addresses a broader challenge in astrophysics: understanding how extreme cosmic objects accelerate particles to very high energies and produce very high-energy (VHE) photons and neutrinos. PKS 1424+240 is located billions of light-years from Earth. It has attracted attention for years because it is both a powerful source of VHE gamma rays and the brightest known neutrino-emitting blazar in the sky, according to observations by the IceCube Neutrino Observatory. It is also associated with one of the strongest peaks in IceCube's nine-year neutrino sky map A blazar is a type of active galactic nucleus powered by a supermassive black hole that pulls in surrounding matter and launches jets of plasma moving close to the speed of light. What makes blazars unique is their orientation. One of their jets points almost directly toward Earth, making them appear exceptionally bright across the electromagnetic spectrum and allowing scientists to study some of the most extreme physical processes in the Universe. The scientists exclaimed it's like the 'Eye of Sauron' in deep space. Usually, the brightest gamma-ray-emitting blazars are expected to have jets that appear to move very quickly. However, radio observations of PKS 1424+240 suggested that its jet was moving much more slowly, creating a contradiction that became part of a long-running problem known as the "Doppler factor crisis." To investigate, researchers analyzed 15 years of observations from the Very Long Baseline Array (VLBA), a network of 10 radio antennas spread across the continental United States, Hawaii and St. Croix. Using a technique called Very Long Baseline Interferometry (VLBI), astronomers combine signals from widely separated radio telescopes to create a virtual Earth-sized telescope capable of revealing extremely fine details. The team combined 42 polarization-sensitive radio images collected between 2009 and 2025, creating a much deeper and more detailed view of the jet than had previously been possible. The observations were carried out as part of MOJAVE (Monitoring Of Jets in Active galactic nuclei with VLBA Experiments), a long-running program that studies the brightness, polarization and magnetic field structures of jets produced by active galaxies. The project aims to better understand how activity near supermassive black holes is linked to high-energy radiation and neutrino emission. “When we reconstructed the image, it looked absolutely stunning,” said Yuri Kovalev, lead author of the study and Principal Investigator of the European Research Council-funded MuSES project at the Max Planck Institute for Radio Astronomy. “We have never seen anything quite like it — a near-perfect toroidal magnetic field with a jet, pointing straight at us.” The image revealed an unusual geometry. The researchers found that Earth lies almost directly in line with the jet, with a viewing angle of less than 0.6 degrees. In simple terms, astronomers are looking almost straight down the jet. This turned out to be the key to the mystery. Because the jet is aimed almost directly at Earth, a relativistic effect called Doppler boosting dramatically increases its apparent brightness. The study found that this effect boosts the emission by a factor of about 30 while also making the jet appear slower than it actually is. “This alignment causes a boost in brightness by a factor of 30 or more,” said Jack Livingston, a co-author at the Max Planck Institute for Radio Astronomy. “At the same time, the jet appears to move slowly due to projection effects — a classic optical illusion.” The nearly head-on view also gave scientists a rare look at the jet's magnetic field. Using polarized radio signals, they detected a clear toroidal, or doughnut-shaped, magnetic field component. The observations suggest the jet carries an electric current and that its magnetic field helps launch, shape and stabilize the flow of plasma. Researchers believe this magnetic structure may also play a key role in accelerating particles to energies high enough to produce both gamma rays and neutrinos. “Solving this puzzle confirms that active galactic nuclei with supermassive black holes are not only powerful accelerators of electrons, but also of protons — the origin of the observed high-energy neutrinos,” Kovalev said. The research was conducted under the MuSES (Multi-messenger Studies of Energetic Sources) project, which investigates how active galactic nuclei accelerate particles and generate different cosmic signals, including light and neutrinos. Scientists say understanding how protons are accelerated and linked to neutrino production remains one of the major unanswered questions in astrophysics. The findings help explain why some blazars can appear to have slow jets while still producing extremely bright high-energy emissions. More broadly, the study strengthens the link between relativistic jets, magnetic fields, gamma rays and high-energy neutrinos. Researchers say the results provide new clues about how some of the Universe's most powerful natural particle accelerators work and offer important insights for multimessenger astronomy, which combines different types of cosmic signals to study extreme events in space. Source: European Research Council, EDP Sciences This article was generated with some help from AI and reviewed by an editor. Under Section 107 of the Copyright Act 1976, this material is used for the purpose of news reporting. Fair use is a use permitted by copyright statute that might otherwise be infringing.
    • Gotenks98 is right... Outlook (new) is absolute trash. Doesn't Mozilla have an Enterprise Version of Firebird?
  • Recent Achievements

    • One Month Later
      lamborghiniv10 earned a badge
      One Month Later
    • Week One Done
      lamborghiniv10 earned a badge
      Week One Done
    • Reacting Well
      X-No-file earned a badge
      Reacting Well
    • One Month Later
      pestcontrol46 earned a badge
      One Month Later
    • Week One Done
      pestcontrol46 earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      510
    2. 2
      PsYcHoKiLLa
      273
    3. 3
      Skyfrog
      75
    4. 4
      +Edouard
      72
    5. 5
      FloatingFatMan
      69
  • Tell a friend

    Love Neowin? Tell a friend!