Recommended Posts

Found this:

try this:

#PersonalToolbar { 
position: fixed !important;
top:61px !important; 
left: 0 !important; 
right: 0 !important;
visibility: collapse !important;
-moz-transition: visibility 1s, opacity 1s ease !important;
}

#personal-bookmarks { 
width: 100% !important;
}

#navigator-toolbox:hover > #PersonalToolbar {
visibility: visible !important;
opacity: 1;
-moz-transition: visibility !important;
} 

however it doesn't work properly for me, because i've put two other things in my bookmarks toolbar:

41440754.png

which results in

36190084.png

Also, disregard the secure site logo thing, I realised that it has two modes, blue and green.

The new status-4-evar is out. It fixes the hover-link fubar.

https://addons.mozilla.org/en-US/firefox/addon/status-4-evar/versions/

My styles still work with both it and beta10:

Replace Url With Hover Link

or to just change the color:

Hover Link Color

Status-4-Ever is godsent, thanks for the info! I just have two issues with it. First I only use it to restore the URL pointer functionality and nothing else, disabled all other options yet my URL bar is now 26 pixels high instead of 24, only 2 pixels, yes but to me the difference is noticable, any way to reverse this while keeping addon?

Second, after installing it my Addon bar looks like this :blink:

screenqs.png

How do I get rid of the white shine?

Thanks in advance!^^

Status-4-Ever is godsent, thanks for the info! I just have two issues with it. First I only use it to restore the URL pointer functionality and nothing else, disabled all other options yet my URL bar is now 26 pixels high instead of 24, only 2 pixels, yes but to me the difference is noticable, any way to reverse this while keeping addon?

Second, after installing it my Addon bar looks like this :blink:

screenqs.png

How do I get rid of the white shine?

Thanks in advance!^^

Sparky's latest release 02B put the status text back where it belongs. :)

* The advanced progress meter style editor isn't ready yet. Instead, there is a text box where you can manually edit the CSS background property. See the W3C CSS background property for details.

* The location bar styling still need a little work. The borders/margins might be a little off.

https://addons.mozilla.org/en-US/firefox/addon/status-4-evar/versions/

Sparky's latest release 02B put the status text back where it belongs. :)

https://addons.mozilla.org/en-US/firefox/addon/status-4-evar/versions/

Yeah thanks, I'm using it already, it works fine, it just makes the URL bar 2 pixels higher which I would like to reverse with a Stylish code, I just have no idea how^^

Yeah thanks, I'm using it already, it works fine, it just makes the URL bar 2 pixels higher which I would like to reverse with a Stylish code, I just have no idea how^^

Adding this peace of code to your add-on bar style should fix your second problem:

#addon-bar {background: none !important;}

LE:

#urlbar {height: 24px !important;}

fixes your first problem but the status text is off-center now...

Yeah thanks, I'm using it already, it works fine, it just makes the URL bar 2 pixels higher which I would like to reverse with a Stylish code, I just have no idea how^^

#urlbar, dropmarker, .progress-bar, searchbar button,
.searchbar-engine-image-container, .searchbar-textbox
{
  padding: 0px !important;
  width: 0px !important;
  height: 18px !important;
  vertical-align:middle!important;
  margin-top: 0px !important;
}

The above may help. Just change it to suit your needs.

Found this:

however it doesn't work properly for me, because i've put two other things in my bookmarks toolbar:

41440754.png

which results in

36190084.png

Turns out my issues were due to stumbleupon's toolbar, not stylish. If anyone wants a slick fading toolbar, combining codes from foxxyn8 and http://userstyles.org/styles/41338:

#PersonalToolbar {
    visibility: collapse !important;
    opacity: 0;
    -moz-transition: visibility 4s, opacity 4s ease !important;
   }

#navigator-toolbox:hover > #PersonalToolbar {
    visibility: visible !important;
    opacity: 1;
    -moz-transition: visibility !important;
   }

#PersonalToolbar { 
position: fixed !important;
top:83px !important; 
width: 100% !important;
}

Edit the position to fit your needs, stumbleupon adds another hidden toolbar above which was messing my setup up.

Adding this peace of code to your add-on bar style should fix your second problem:

#addon-bar {background: none !important;}

LE:

#urlbar {height: 24px !important;}

fixes your first problem but the status text is off-center now...

Both work like a charm, thanks! And thanks to Gary also^^

Turns out my issues were due to stumbleupon's toolbar, not stylish. If anyone wants a slick fading toolbar, combining codes from foxxyn8 and http://userstyles.org/styles/41338:

Edit the position to fit your needs, stumbleupon adds another hidden toolbar above which was messing my setup up.

You used a very "beta" version of my style (it had issues). The finalized version is here:

Firefox 4 Bookmark Toolbar Autohide

You used a very "beta" version of my style (it had issues). The finalized version is here:

Firefox 4 Bookmark Toolbar Autohide

have you tried adding buttons to the bookmark bar, then installing the script? I get two seperate fading rows instead of one.

I managed to get all of the items (in my case, buttons, bookmarks and stumbleupon toolbar) in one row, but i can't figure out a way of justifying the toolbar to the right without manually adding multiple spaces (not flexible spaces). :(

Is it possible to make it fade and yet allow me to drag/drop things onto the bar?

have you tried adding buttons to the bookmark bar, then installing the script? I get two seperate fading rows instead of one.

I managed to get all of the items (in my case, buttons, bookmarks and stumbleupon toolbar) in one row, but i can't figure out a way of justifying the toolbar to the right without manually adding multiple spaces (not flexible spaces). :(

Is it possible to make it fade and yet allow me to drag/drop things onto the bar?

adjust the width of #personal-bookmarks to get everything in one row. The only thing I know of to to do with regards to the drag/drop is to increase the transition delay of #PersonalToolbar and make sure its showing before trying to drag something to it

adjust the width of #personal-bookmarks to get everything in one row. The only thing I know of to to do with regards to the drag/drop is to increase the transition delay of #PersonalToolbar and make sure its showing before trying to drag something to it

that seems to work, but I have a rather stupid question, how do I get the toolbar to show up again? It isn't appearing on hover or click... and all I changed was the #personal-bookmarks parameter...

#personal-bookmarks shouldn't have had any effect on that. The only thing in the style that might cause that would be if you set the hover delay too high or your bookmark toolbar is disabled. Try disabling then renabling the bookmark toolbar.

#personal-bookmarks shouldn't have had any effect on that. The only thing in the style that might cause that would be if you set the hover delay too high or your bookmark toolbar is disabled. Try disabling then renabling the bookmark toolbar.

ohh clever, you have a delay. I was using my buggy cobbled together script with no delay, I didn't have the patience to leave the cursor there for the 1.25 seconds to find out if it would pop up. I've set that to 0 now, thanks for all the help, very nice scripting you've got here, works perfect!

I would suggest to reduce the default fade in time (not the delay - that might get annoying) because its not too intuitive to wait over there to get the bar back, programs like winamp etc change opacity almost immediately over hover.

I would suggest to reduce the default fade in time (not the delay - that might get annoying) because its not too intuitive to wait over there to get the bar back, programs like winamp etc change opacity almost immediately over hover.

Good idea, I reduced it to .2s.

Is it possible to:

- Remove "Firefox" from the orange menubutton, leaving only the dropdown arrow or none at all?

- Change the colour of the menubutton to match the Windows glass colour. (essentially the same colour as an inactive tab?

- move tab-bar down a bit so as to enable Aero Snap when Firefox is maximized.

Is it possible to:

- Remove "Firefox" from the orange menubutton, leaving only the dropdown arrow or none at all?

- Change the colour of the menubutton to match the Windows glass colour. (essentially the same colour as an inactive tab?

- move tab-bar down a bit so as to enable Aero Snap when Firefox is maximized.

#appmenu-button {
      min-width: 0 !important;
      background-image: -moz-linear-gradient(transparent, rgba(91, 91, 91, 0.15) 1px, rgba(0, 0, 0, 0.3) 60%), -moz-linear-gradient(rgb(207, 219, 236), rgb(207, 219, 236)) !important;
    }

#appmenu-button .button-text {
       display: none !important;
}

#appmenu-button .button-menu-dropmarker {
        margin-left: -1px !important;
}

#main-window[tabsontop][sizemode="maximized"] #TabsToolbar {
        margin-top: 3px !important;
}

First off: thanks to everyone participating in this thread for the awesome work and the great ideas you've provided to everyone.

Now, getting to the business at hand: I've been a long-time FF3 user (currently at FF 3.6.13) and I have it customized to my exact likings, but there's only so much I can do with it and FF4 is almost on top of us. So tonight I set out on getting my fingers dirty with all the necessary tweaks and adjustments (using FF4b12pre 'just 'cause) and I've got things almost perfect - the tip above and the code for Stylish to shrink the menu button to basically just the arrow was beautiful and, well, this is what I've got it down to (and of course, this is a fresh installation, portable actually since that's what I prefer):

post-12693-0-29482600-1297141163.png

Now, here's what I'm aiming for - did some editing in Paint Shop Pro and I would dearly absolutely most positively love to get this layout if it's at all possible:

post-12693-0-48684600-1297141311.png

If it's possible, I would be eternally grateful to whoever can show me the way. I just installed Stylish, did that menu button code and it's almost perfect at this point, but I really would love to know if it's possible to get the Address Bar up there where I want it. If not, I know that I can move the menu button down to the area to the left of the Address Bar, which is somewhat useful I suppose, but then it'll leave that huge white space of nothing up there and I don't have a need for that.

I wish it was technically possible to actually do one of the following: increase the size of the title bar from ~20 pixels to 25 so it can match the size of the Address Bar exactly, or b) decrease the size/height of the Address Bar from 25 down to the ~20 so it's an exact match up there in between those buttons.

Regardless, I'm very pleased with the extreme minimalist layout that I can get (the first pic above), but I'd really love to get that even more minimalistic second shot if it's possible at all. I don't need buttons at all since I use All-In-One Gestures for most everything (I have a ton of gestures that can do most anything with the flick of the mouse) so, I do like the clean look and it can't get much cleaner than this. :D

Again, my thanks to everyone participating in this thread so far, and hopefully FF4 will be done soon...

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

    • No registered users viewing this page.
  • Posts

    • State of Decay 3 is out in 2027, reveals Plague Nests with new co-op gameplay trailer by Pulasthi Ariyasinghe A few months ago, Undead Labs broke its silence about the third entry in the State of Decay series since its announcement in 2020. Today, the studio had a brand-new trailer to reveal at the Xbox Games Showcase, finally giving players a look at the Unreal Engine 5-powered title. A broad 2027 release window is now attached to State of Decay 3 too. The studio confirmed that every scene seen in the gameplay trailer (except for the studio logo) released today is from the game with no cinematic footage. "The quality bar of the moment-to-moment experience is higher than anything we’ve achieved in Undead Labs’ history," says the studio. "State of Decay 3 is being built in Unreal Engine 5, and we’re creating better quality versions of what makes our game the survival sandbox it is, and the combat experience is really, really important to us, and I think you can see it coming through in this trailer." One new aspect of this upcoming entry is the Plague Nests. These are supposed to be dynamic, dungeon‑like enemy hubs with varied “personas” that change tactics each time one appears on a map. These areas will have the best loot in the game for players brave enough to tackle them. The combat system is being overhauled too, letting players do quick and power attacks depending on the situation. This isn't just on the player's side though, as zombies themselves now have multiple new types of behaviors depending on how fresh or decayed they are. "All of these play very differently, especially as you start getting outnumbered or when you’re making noise and running around and trying to save your rear end or the rear end of your friend next to you," adds the developer. Of course, settlement building and community management are massive parts of this third entry too. These are being further expanded with the cooperative focus, giving players much more freedom for playing together than in State of Decay 2. Players will even be able to split up and build settlements in different areas of the same map with different goals. Undead Labs confirmed that playtests are already ongoing for the title, and interested players can sign up to participate by heading over here once more slots open up ahead of the full release. State of Decay 3 is coming out on PC, Xbox Series X|S, PlayStation 5, and Xbox Game Pass sometime in 2027.
    • 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.
  • 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
      492
    2. 2
      PsYcHoKiLLa
      248
    3. 3
      Steven P.
      72
    4. 4
      +Edouard
      68
    5. 5
      ATLien_0
      67
  • Tell a friend

    Love Neowin? Tell a friend!