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.
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
Visible - This value indicates that content is not clipped, i.e., it may be rendered outside the tab table box. Hidden - This value indicates that the content is clipped and that no scrolling mechanism should be provided to view the content outside the clipping region; users will not have access to clipped content. Scroll - This value indicates that the content is clipped and that if the user agent uses scrolling mechanism that is visible on the screen (such as a scroll bar), that mechanism should be displayed for the tab table whether or not any of its content is clipped. Auto - The behavior of the 'auto' value is user agent-dependent, but should cause a scrolling mechanism to be provided for overflowing tab tables.
Animation
Page
Position/Size
Width and height are set in px as default. In case you need to set them in %, make sure to include % sign.
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.