Join the Mozilla’s Test Days event from 9–15 Jan to test the new Firefox address bar on Firefox Beta 135 and get a chance to win Mozilla swag vouchers! 🎁

Sök i support

Akta dig för supportbedrägerier: Vi kommer aldrig att be dig att ringa eller skicka ett sms till ett telefonnummer eller dela personlig information. Rapportera misstänkt aktivitet med alternativet "Rapportera missbruk".

Läs mer

UserChrome question

  • 2 svar
  • 1 har detta problem
  • 1 visning
  • Senaste svar av cor-el

more options

in userchrome I have given #browser a border-radius value of 30px. This reveals another color underneath the browser.

I want to give this newly revealed part of fire-fox another color but I don't know the name ..... Can you help, please ??

#browser {
  /*background-color: $(color $(( RANDOM %  254 + 1 ))) !important;*/
    background-image: url(clouds.jpg) !important;
    box-shadow: 0 0 20px 20px #0000ff !important;
}
in userchrome I have given #browser a border-radius value of 30px. This reveals another color underneath the browser. I want to give this newly revealed part of fire-fox another color but I don't know the name ..... Can you help, please ?? <pre><nowiki> #browser { /*background-color: $(color $(( RANDOM % 254 + 1 ))) !important;*/ background-image: url(clouds.jpg) !important; box-shadow: 0 0 20px 20px #0000ff !important; }</nowiki></pre>

Ändrad av cor-el

Alla svar (2)

more options

If #browser isn't covering everything horizontally or vertically you see the root html element which has a selector of #main-window:

<html id="main-window">
    <html:body>
        <box>
            <toolbox id="navigator-toolbox"> <= This is the toolbar area
        <hbox id="browser"> <= This is the tab content area
more options