DOCUMENTATION

Page Appearance

  1. page_layout
    - for layout of page there are 2 options given below. Values are in string.
    
    "page_layout": "container-fluid",
    choices: 'container', 'container-fluid'
                
  2. theme_style_appearance
    - for card apperance there are 4 options given below. Values are in array.
    
    "theme_style_appearance": " [],
    choices: 'theme-flat', 'theme-sharp'
                

There are two ways you can change the setting of your page:

With the use of live customizer


You can work on page style using Live Customizer in following way:

  1. You can change the page style and its appearance with the property name and its value here by declaring property name and its values in gulp.config.json file.

    - This is the example of gulp.config.json file

    
    "options":{
    "saveLocal": "sessionStorage",
    "storeKey": "huisetting",
    "setting":{
        "app_name": { "value" : "Hope UI" },
        "page_layout": {"value" : "container-fluid"},
        "theme_transition": {"value" : "theme-with-animation"},
        "card_color": {"value" : "card-glass"},
        "theme_style_appearance": {"value": []}
    }
    },
    
    

Manual


You can change the page style and appearance with a single action.

  1. By adding some classes in parent div section. Example is given below.

    Page Style

    If you wish to change the page style, you can follow the below action.

    For example you have to set page style as boxed then you will have to add container class at main section.

    - For page style as boxed

    <main class = "main-content">
      <div class = ".... container">
      .......
      </div>
    <main>

    - For page style as full width

    <main class = "main-content">
      <div class = ".... container-fluid">
      .......
      </div>
    <main>

    Page Style Appearance

    If you wish to change the page style appearance, you can follow the below action.

    For example you have to set page style appearance as flat then you will have to add theme-flat class at body tag.

    - For page style appearance as flat

    <body class=".... theme-flat">
    .......
    </body>

    - For page style appearance as sharp

    <body class=".... theme-sharp">
    .......
    </body>;

Updated on February 28, 2022
Was this page helpful?