# White scheme

## How To Start New Page?

The design for the blank page is shown below:![](/files/-M4TuYfj2U2dDnU7XK0B)It has the following Structure:

```
 <html>
      <body>
            <div id="wrap">

                 <========== Start of Top Bar ============>

                 <div id="top>
                    <nav class="navbar navbar-static-top">

                      ........It contains Top bar ..........

                    </nav>
                 </div>

                 <========== End of Top Bar ============>

                 <div class="wrapper">

                 <========== Start of Left Side Menu ============>

                     <div id="left">
                          <div class="menu_scroll">
                               <ul id="menu">

                                   ...........It contains left menu list...............

                               </ul>
                          </div>
                     </div>

                <========== End of Left Side Menu ============>

                <========== Start of Main Content ============>

                     <div id="content" class="bg-container">

                         <header class="head">

                              ......It contains Page Header (Breadcrumb)........
                         </header>
                         <div class="outer">

                         ....... It contains the Main content of the page .......

                         </div>

                        </div>

                  <========== End of Main Content ============>

                   </div>

                  <========== Start of Right side Bar ============>

                  <div id="request_list">

                      ................It contains Right side list.................

                  </div> 

                  <========== End of Right side Bar ============>

                  <========== Start of skins colors section ============>

                  <div id="right">
                      <div class="right_content">

                      .............It contains colors section..............

                      </div>      
                  </div>

                  <========== End of skins colors section ============>

               </div>  
      </body>
 </html>
```

## i) Boxed Layout

The design for the blank page is shown below:![](/files/-M4TuYg1m57nLLhFvLtz)It has the following Structure:

```
<html>
    <body class="boxed">
        <div id="wrap">

        <========== Start of Top Bar ============>

        <div id="top>
             <nav class="navbar navbar-static-top">

             ........It contains Top bar ..........

             </nav>
        </div>

        <========== End of Top Bar ============>

        <div class="wrapper">

             <========== Start of Left Side Menu ============>

             <div id="left">
                  <div class="menu_scroll  left_scrolled">
                       <ul id="menu">

                         ..........It contains left menu list...............

                       </ul>
                  </div>
              </div>

            <========== End of Left Side Menu ============>

            <========== Start of Main Content ============>

            <div id="content" class="bg-container">

                  <header class="head">

                  ......It contains Page Header (Breadcrumb)........

                 </header>
                 <div class="outer">

                 ....... It contains the Main content of the page .......

                 </div>

           </div>

            <========== End of Main Content ============>

       </div>

            <========== Start of Right side Bar ============>

               <div id="request_list">

                    ................It contains Right side list.................

               </div>

            <========== End of Right side Bar ============>

           <========== Start of skins colors section ============>

            <div id="right">
                <div class="right_content">

                .............It contains colors section..............

               </div>
            </div>

          <========== End of skins colors section ============>

    </div>
</body>
</html>
```

## ii)  Fixed Menu

The design for the blank page is shown below:

![](/files/-M4TuYg43b3ljqFxn5ZD)

It has the following Structure

```
<html>
    <body class="fixedMenu_left">
        <div id="wrap">

        <========== Start of Top Bar ============>

        <div id="top>
             <nav class="navbar navbar-static-top">

             ........It contains Top bar ..........

             </nav>
        </div>

        <========== End of Top Bar ============>

        <div class="wrapper">

             <========== Start of Left Side Menu ============>

             <div id="left" class="fixed">
                  <div class="menu_scroll left_scrolled">
                       <ul id="menu">

                         ..........It contains left menu list...............

                       </ul>
                  </div>
              </div>

            <========== End of Left Side Menu ============>

            <========== Start of Main Content ============>

            <div id="content" class="bg-container">

                  <header class="head">

                  ......It contains Page Header (Breadcrumb)........

                 </header>
                 <div class="outer">

                 ....... It contains the Main content of the page .......

                 </div>

           </div>

            <========== End of Main Content ============>

       </div>

           <========== Start of Right side Bar ============>

          <div id="request_list">

               ................It contains Right side list.................

          </div>

          <========== End of Right side Bar ============>

          <========== Start of skins colors section ============>

          <div id="right">
               <div class="right_content">

               .............It contains colors section..............

               </div>
          </div>

          <========== End of skins colors section ============>

    </div>
</body>
</html>
```

## iii) Fixed Header

The design for the blank page is shown below:

![](/files/-M4TuYg6TjbYGfiHLLnz)

It has the following Structure:

```
<html>
    <body class="fixedNav_position">
        <div id="wrap">

        <========== Start of Top Bar ============>

        <div id="top"  class="fixed">
             <nav class="navbar navbar-static-top">

             ........It contains Top bar ..........

             </nav>
        </div>

        <========== End of Top Bar ============>

        <div class="wrapper fixedNav_top">

             <========== Start of Left Side Menu ============>

             <div id="left">
                  <div class="menu_scroll">
                       <ul id="menu">

                         ..........It contains left menu list...............

                       </ul>
                  </div>
              </div>

            <========== End of Left Side Menu ============>

            <========== Start of Main Content ============>

            <div id="content" class="bg-container">

                  <header class="head">

                  ......It contains Page Header (Breadcrumb)........

                 </header>
                 <div class="outer">

                 ....... It contains the Main content of the page .......

                 </div>

           </div>

            <========== End of Main Content ============>

       </div>

            <========== Start of Right side Bar ============>

               <div id="request_list">

               ................It contains Right side list.................

               </div>

            <========== End of Right side Bar ============>

            <========== Start of skins colors section ============>

              <div id="right">
                 <div class="right_content">

                 .............It contains colors section..............

                 </div>
             </div>

           <========== End of skins colors section ============>

    </div>
</body>
</html>
```

## iv) Fixed Menu and Header

The design for the blank page is shown below:

![](/files/-M4TuYg8THbctaXF-STt)It has the following Structure:

```
<html>
    <body class="fixedNav_position fixedMenu_left">
        <div id="wrap">

        <========== Start of Top Bar ============>

        <div id="top"  class="fixed">
             <nav class="navbar navbar-static-top">

             ........It contains Top bar ..........

             </nav>
        </div>

        <========== End of Top Bar ============>

        <div class="wrapper fixedNav_top">

             <========== Start of Left Side Menu ============>

             <div id="left"  class="fixed">
                  <div class="menu_scroll left_scrolled">
                       <ul id="menu">

                         ..........It contains left menu list...............

                       </ul>
                  </div>
              </div>

            <========== End of Left Side Menu ============>

            <========== Start of Main Content ============>

            <div id="content" class="bg-container">

                  <header class="head">

                  ......It contains Page Header (Breadcrumb)........

                 </header>
                 <div class="outer">

                 ....... It contains the Main content of the page .......

                 </div>

           </div>

            <========== End of Main Content ============>

       </div>

            <========== Start of Right side Bar ============>

               <div id="request_list">

               ................It contains Right side list.................

              </div>

            <========== End of Right side Bar ============>

            <========== Start of skins colors section ============>

            <div id="right">
                 <div class="right_content">

                     .............It contains colors section..............

                 </div>
           </div>

           <========== End of skins colors section ============>

    </div>
</body>
</html>
```

## v) Compact Menu

The design for the blank page is shown below:

![](/files/-M4TuYgAEkxFoQxz5QLn)In this layout, the class `sidebar-left-hidden` gets added to the body tag through Js , which is responsible for the compact menu.

It has the following Structure:

```
<html>
      <body>
            <div id="wrap">

                 <========== Start of Top Bar ============>

                 <div id="top>
                    <nav class="navbar navbar-static-top">

                      ........It contains Top bar ..........

                    </nav>
                 </div>

                 <========== End of Top Bar ============>

                 <div class="wrapper">

                 <========== Start of Left Side Menu ============>

                     <div id="left">
                          <div class="menu_scroll">
                               <ul id="menu">

                                   ...........It contains left menu list...............

                               </ul>
                          </div>
                     </div>

                <========== End of Left Side Menu ============>

                <========== Start of Main Content ============>

                     <div id="content" class="bg-container">

                         <header class="head">

                              ......It contains Page Header (Breadcrumb)........
                         </header>
                         <div class="outer">

                         ....... It contains the Main content of the page .......

                         </div>

                        </div>

                  <========== End of Main Content ============>

                   </div>

                 <========== Start of Right side Bar ============>

                 <div id="request_list">

                    ................It contains Right side list.................

                 </div>

                 <========== End of Right side Bar ============>
                 <========== Start of skins colors section ============>

                 <div id="right">
                      <div class="right_content">

                   .............It contains colors section..............

                      </div>
                 </div>

                <========== End of skins colors section ============>

               </div>  
      </body>
 </html>
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://lorvent.gitbook.io/admire/html/start-new-page/white-scheme.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
