This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Hierdie gesprek is in die argief. Vra asseblief 'n nuwe vraag as jy hulp nodig het.

UserChrome question

  • 2 antwoorde
  • 1 het hierdie probleem
  • 1 view
  • Laaste antwoord deur 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>

Gewysig op deur cor-el

All Replies (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