Set vertical tabs

In this article, you will learn how to change ClickHelp Tabs control orientation from horizontal into vertical with two simple CSS selectors.

Preview

Tab 1 Tab 1 Content
Tab 2 Tab 2 Content
Tab 3 Tab 3 Content

How To Implement

Add the following CSS to the style file. It will overwrite the default Tabs element styling.

CSS Code

CSS
.CHTabs_container
{
display: flex;
}

.CHTabs_tabCaptionsContainer
{
flex-direction: column;
}