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

    • Doom: The Dark Ages Revelations expansion gives the Slayer a brutal Chain Spear by Pulasthi Ariyasinghe Last year, id Software released Doom: The Dark Ages as a prequel to its reboot series, offering a look at the legendary Slayer character during an ancient war between Hell and Heaven. Today, at the Xbox Games Showcase, id Software returned with a new announcement that unveiled Doom: The Dark Ages Revelations as its first story expansion. The expansion will see the Slayer being betrayed and cast into a "merciless purgatory only escapable by confronting haunting truths." Somehow, there is one ally in all this chaos seemingly attempting to help our protagonist escape his fate. Players will be ascending this prison and fighting plenty of new demons and abominations as they work to free the Slayer's followers. One new aspect of the expansion will be the Chain Spear. This new weapon is described by the studio as a "uniquely satisfying combat system that rewards mastery with a potent combination of power and mobility." Check out the trailer below to see the new weapon in action, where the Slayer is seen using it to even pin enemies to walls. id Software is also preparing a free update to all owners of Doom: The Dark Ages that will land alongside the new paid expansion. Dubbed the Ripatorium 3.0 update, this will add more customization options, an improved pass code generation system, and preset options for players diving into the game's arena challenge mode. Expansion buyers will also receive additional maps, demons, and new weapons to use in this mode in addition to the story levels. Doom: The Dark Ages Revelations expansion is out on July 7 across PC, Xbox Series X|S, and PlayStation 5 with a $19.99 price tag. Those who own the Premium Edition or the Collector's Bundle will receive the expansion for no extra cost as well.
    • Hyped for this. Replayed the remasters recently and they're so well done, and Crash 4 was great too. I trust this team to deliver.
    • Ninja Theory's new Hellblade game is action-focused and set in Purgatory by Pulasthi Ariyasinghe Ninja Thery has been building its award-winning Hellblade series since 2017, delivering Senua's Sacrifice and Senua's Saga since then. Today at the 2026 Xbox Games Showcase, the studio had a brand-new installment announcement featuring Senua again, but this time, she is in a version of purgatory, and the focus is on the action. Simply named Senua, this new entry is described as a "full-on action-adventure" experience, delivering an expanded focus on combat, puzzle-solving, and freedom of exploration. The developer says that it is keeping the same high production values and storytelling features of the previous games while giving what players have been asking for in the gameplay department. The entirety of Ninja Theory is now working on Senua, giving the project much more manpower than ever before, while also letting the team draw on its action roots from Devil May Cry and prior titles. However, the studio also confirmed that its previously announced Project Mara horror experience is no longer in development. Alongside snappier traversal moves, Senua will be able to take stealth and direct combat routes. She has access to her own sword, plus any enemy weapons as well, with dual wielding also being an option for most dropped melee swords, axes, and other weapons. Outside of melee combat, Senua will be able to use special abilities that let her alter the reality around her. The world is said to be about twice the size of Hellblade 2. While this won't be an open-world experience, the linear story will let players explore their surroundings further than before. The story of Senua will be set after the events of previous Hellblade titles, with our protagonist being stuck in her own version of Purgatory. The series' well-explored psychosis themes will return as well. "She’s trapped between life and death on a quest to reach the afterlife and be reunited with the ones that she’s loved and lost," adds the studio. "Her belief is that by healing the wounds of her life, she can find the peace that is the key that unlocks the gate to the afterlife." Senua is releasing on Xbox Series X|S, PC, and PlayStation 5 sometime in 2027.
    • Windows has had it, it's called camera frame server. I recall when it was first introduced in an early Windows 10 release it caused issues and there was a registry entry to disable it. Seems like they disabled it by default at some point. Windows 11 brought that toggle to the settings app (not just registry) a while ago.
  • Recent Achievements

    • Proficient
      Eric Biran went up a rank
      Proficient
    • Dedicated
      Conjor earned a badge
      Dedicated
    • Week One Done
      Windows Guy earned a badge
      Week One Done
    • Dedicated
      Mark Spruce earned a badge
      Dedicated
    • Collaborator
      conkir earned a badge
      Collaborator
  • Popular Contributors

    1. 1
      +primortal
      481
    2. 2
      PsYcHoKiLLa
      243
    3. 3
      Steven P.
      72
    4. 4
      +Edouard
      66
    5. 5
      neufuse
      66
  • Tell a friend

    Love Neowin? Tell a friend!