TABLES AND LAYOUTS

Horizontal / Vertical Tabs

The Horizontal / Vertical Tabs is mechanism for structuring content in a table with tabs (uses DIVs). Each tab has title and content. When certain tab is selected, its content is displayed. Each tab can have two states - selected and unselected. You can insert horizontal or vertical tabs.

To insert Horizontal / Vertical Tabs:
  1. Position the cursor | where you want to insert the tab table.
  2. Click the tab table icon () or Vertical Tabs icon () on the Toolbar.
  3. Right-click in the tab table and select Tabs Properties from the menu to change the default attributes.

Tabs Properties

Use the Settings button to open tab table attributes and to modify them. There are four tabs with settings.

Container defines the area that holds the whole tab table. Page defines the area that holds content of the selected tab. Tab defines the tab area. Active Tab defines the selected tab area.

When you change settings, press the Refresh button to see the result in the Preview area.

If you want to load predefined settings or save current settings and use them later for another object, use the Presets option (at the top left corner). For more information see Presets.

Container

Main

Background

Sets background for the tab table container. For more information see Background Properties.

Padding

Sets padding for the tab table container. For more information see Padding Properties.

Border

Sets borders for the tab table container. For more information see Border Properties.

Border Radius

The border-radius property allows you to easily utilise rounder corners to the tab table container. For more information see Border Radius.

Additional

Animation

Page

Position/Size

Page Background

Sets background for the page area. For more information see Background Properties.

Page Area Padding

Sets padding for the the page area. For more information see Padding Properties.

Page Area Border

Sets borders for the the page area. For more information see Border Properties.

Border Radius

The border-radius property allows you to easily utilise rounder corners to the tab table page area. For more information see Border Radius.

Tabs Area Margins

Sets tabs area margins. For more information see Margins Properties.

Tab / Active Tab

Note that if you use background image for tabs, tab is actually created with two images. Check on the image below:

Size (available for TAB only)

Background

Sets background for the tabs area. For more information see Background Properties.

Left Background (available for horizontal tab tables only)

Padding

Sets padding for the tabs area. For more information see Padding Properties.

Margins

Sets margins. for the tabs area For more information see Margins Properties.

Font (available for horizontal tab tables only)

Border

Sets borders for the tabs area. For more information see Border Properties.

How to automatically open certain tab when page loads?

To automatically open certain tab in a multi-tab table, open Page Settings panel, Scripts/Page Background tab, Body Tag property and type:

onload="sActive('t',X);", where X is the tab number (1, 2, 3..).

To select random tab use: onload="sActive('t',Math.floor(Math.random()*Y+1));", where Y is total number of tabs.