(Free) List Style Tab 03

(free) list style tab 03 1

(free) list style tab 03 2

#1. Install Code

First, click Gear icon on page where you want to add this List style.

List style tab 03 2

Next, click Advanced > Paste this code

<!-- @tuanphan - List Tab Style 03 -->
<link rel="stylesheet" href="https://code.beaverhero.com/file?filename=1761362682766liststyle03.css"/>
<script src="https://code.beaverhero.com/file?filename=1761362709900liststyle03.js">

(free) list style tab 03 3

#2. Usage

First, you need to add a People Section > Choose Section with (i) icon.

List style tab 03 4

Next, hover on top right of section > Click Edit Section

List style tab 03 5

Enter text: tabslider01 in Anchor Link

tabslider01

List style tab 03 6

Next, hover on top right of section > Click Edit Content to add title/description/button

List style tab 03 7

Enable these options

List style tab 03 8

At Content, you can edit/add new item.

List style tab 03 9

You can add Image, Title (Tab Label), Description (Tab Content Title/Description), Button (Tab Button)

List style tab 03 10

List style tab 03 12

#3. Customize

#3.1. To remove gap between Tab Labels

(free) list style tab 03 4

You can add this under plugin code

<style>
div.tp-tab-list {
    gap: 0px !important;
}
</style>

(free) list style tab 03 5

#3.2. To add rounded corners of Tab Labels, like this.

(free) list style tab 03 6

add this before </style>

.tp-tab-list button {
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
}

(free) list style tab 03 7

#3.3. To add rounded corners of Tab Content, like this

(free) list style tab 03 8

Add this before </style>

div.tp-content-container .tp-content-panel {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

(free) list style tab 03 9

#3.4. To add border around images in Tab Panel, like this.

(free) list style tab 03 10

add this before </style>

img.tp-content-image {
    border: 2px solid #000;
}

(free) list style tab 03 11

#3.6. To change order of image – text in Tab Panel, from this

(free) list style tab 03 12

To this.

(free) list style tab 03 13

Add this before </style>

@media screen and (min-width:768px) {
    div.tp-content-panel {
    flex-direction: row-reverse;
}}

(free) list style tab 03 14

#3.7. To make tab labels stacked on mobile, from this.

(free) list style tab 03 15

To this.

(free) list style tab 03 16

Use this code before </style>

@media screen and (max-width:767px) {
    .tp-tab-list {
        flex-direction: column;
    }
}

(free) list style tab 03 17

Buy me a coffee