Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7617759
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T03:13:42+00:00 2026-05-31T03:13:42+00:00

I’ve been trying to replicate the unable to establish connection error in one of

  • 0

I’ve been trying to replicate the unable to establish connection error in one of my website. I’ve tried to copy HTML from the error message in the firefox browser. I have tried to find the source of the default error page(Problem loading page). I found the following source, when i select the text and the choose Selection Source in right click menu.

<h1 id="errorTitleText">Unable to connect</h1>
      </div>

      <!-- LONG CONTENT (the section most likely to require scrolling) -->
      <div id="errorLongContent">

        <!-- Short Description -->
        <div id="errorShortDesc">
          <p id="errorShortDescText">Firefox can't establish

How to find full source code?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T03:13:43+00:00Added an answer on May 31, 2026 at 3:13 am

    install firebug, and then press the HTML tab when you are on the error page.

        <!-- ERROR ITEM CONTAINER (removed during loading to avoid bug 39098) -->
    
    
        <!-- PAGE CONTAINER (for styling purposes only) -->
        <div xmlns="http://www.w3.org/1999/xhtml" id="errorPageContainer">
    
          <!-- Error Title -->
          <div id="errorTitle">
            <h1 id="errorTitleText">Server not found</h1>
          </div>
    
          <!-- LONG CONTENT (the section most likely to require scrolling) -->
          <div id="errorLongContent">
    
            <!-- Short Description -->
            <div id="errorShortDesc">
              <p id="errorShortDescText">Firefox can't find the server at www.bbc.co;uk.</p>
            </div>
    
            <!-- Long Description (Note: See netError.dtd for used XHTML tags) -->
            <div id="errorLongDesc">
    <ul>
      <li>Check the address for typing errors such as
        <strong>ww</strong>.example.com instead of
        <strong>www</strong>.example.com</li>
      <li>If you are unable to load any pages, check your computer's network
        connection.</li>
      <li>If your computer or network is protected by a firewall or proxy, make sure
        that Firefox is permitted to access the Web.</li>
    </ul>
    </div>
    
            <!-- Override section - For ssl errors only.  Removed on init for other
                 error types.  -->
    
          </div>
    
          <!-- Retry Button -->
          <button id="errorTryAgain" autocomplete="off" onclick="retryThis(this);">Try Again</button>
    
        </div>
    
        <!--
        - Note: It is important to run the script this way, instead of using
        - an onload handler. This is because error pages are loaded as
        - LOAD_BACKGROUND, which means that onload handlers will not be executed.
        -->
        <script xmlns="http://www.w3.org/1999/xhtml" type="application/javascript">initPage();</script>
    

    For CSS, it seems to use: chrome://global/skin/netError.css

    /*
     *  This defines the look-and-feel styling of the error pages.
     *  (see: netError.xhtml)
     *
     *  Original styling by William Price <bugzilla@mob.rice.edu>
     *  Updated by: Steven Garrity <steven@silverorange.com>
     *              Henrik Skupin  <mozilla@hskupin.info>
     */
    
    html {
      background: -moz-Dialog;
    }
    
    body {
      margin: 0;
      padding: 0 1em;
      color: -moz-FieldText;
      font: message-box;
    }
    
    h1 {
      margin: 0 0 .6em 0;
      border-bottom: 1px solid ThreeDLightShadow;
      font-size: 160%;
    }
    
    ul, ol {
      margin: 0;
      -moz-margin-start: 1.5em;
      padding: 0;
    }
    
    ul > li, ol > li {
      margin-bottom: .5em;
    }
    
    ul {
      list-style: square;
    }
    
    #errorPageContainer {
      position: relative;
      min-width: 13em;
      max-width: 52em;
      margin: 4em auto;
      border: 1px solid ThreeDShadow;
      border-radius: 10px;
      padding: 3em;
      -moz-padding-start: 30px;
      background: url("chrome://global/skin/icons/warning-large.png") left 0 no-repeat -moz-Field;
      background-origin: content-box;
    }
    
    #errorPageContainer.certerror {
      background-image: url("chrome://global/skin/icons/sslWarning.png");
    }
    
    body[dir="rtl"] #errorPageContainer {
      background-position: right 0;
    }
    
    #errorTitle {
      -moz-margin-start: 80px;
    }
    
    #errorLongContent {
      -moz-margin-start: 80px;
    }
    
    #errorShortDesc > p {
      overflow: auto;
      border-bottom: 1px solid ThreeDLightShadow;
      padding-bottom: 1em;
      font-size: 130%;
      white-space: pre-wrap;
    }
    
    #errorLongDesc {
      -moz-padding-end: 3em;
      font-size: 110%;
    }
    
    #errorLongDesc > p {
    }
    
    #errorTryAgain {
      margin-top: 2em;
      -moz-margin-start: 80px;
    }
    
    #brand {
      position: absolute;
      right: 0;
      bottom: -1.5em;
      -moz-margin-end: 10px;
      opacity: .4;
    }
    
    body[dir="rtl"] #brand {
      right: auto;
      left: 0;
    }
    
    #brand > p {
      margin: 0;
    }
    
    #errorContainer {
      display: none;
    }
    
    #securityOverrideDiv {
      padding-top: 10px;
    }
    
    #securityOverrideContent {
      background-color: #FFF090; /* Pale yellow */
      padding: 10px;
      border-radius: 10px;
    }
    
    /* Custom styling for 'blacklist' error class */
    :root.blacklist #errorTitle, :root.blacklist #errorLongContent,
    :root.blacklist #errorShortDesc, :root.blacklist #errorLongDesc,
    :root.blacklist a {
      background-color: #722; /* Dark red */
      color: white;
    }
    
    :root.blacklist #errorPageContainer {
      background-image: url("chrome://global/skin/icons/blacklist_64.png");
      background-color: #722;
    }
    
    :root.blacklist {
      background: #333;
    }
    
    :root.blacklist #errorTryAgain {
      display: none;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have a jquery bug and I've been looking for hours now, I can't
I have just tried to save a simple *.rtf file with some websites and
For some reason, after submitting a string like this Jack’s Spindle from a text
I am trying to understand how to use SyndicationItem to display feed which is
I used javascript for loading a picture on my website depending on which small
Basically, what I'm trying to create is a page of div tags, each has
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I am reading a book about Javascript and jQuery and using one of the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.