Hi!
It worked! wouhou!
If anybody would like to achieve a similar result, here’s what I did:
I added this CSS to create a class and hover for the bottom arrow of my tabs:
.btn-class{
opacity:0;
}
.btn-class:hover{
opacity:1;
}
.hero1 {
position:relative;
background-color:#1d2731;
color: white;
height:0px !important;
width:100% !important;
opacity: 0;
}
.hero1:after {
content:’’;
position: absolute;
top: 100%;
left: 0;
right: 0;
margin: 0 auto;
width: 0;
height: 0;
border-top: solid 50px #1d2731;
border-left: solid 50px transparent;
border-right: solid 50px transparent;
z-index: 2;
}
.hero1: hover {
opacity: 1;
color: white;
}
and repeated for all my tabs (.hero2, .hero3, .hero4, etc.)
In Tabs - List, I have added this CSS to set individual background colors for my tabs:
$el.x-tabs ul>li:first-of-type button {
background:#1d2731;
}
$el.x-tabs ul>li:nth-child(2) button {
background: #1d2731;
}
$el.x-tabs ul>li:nth-child(3) button {
background: #0b3c5d;
}
$el.x-tabs ul>li:nth-child(4) button {
background: #328cc1;
}
$el.x-tabs ul>li:nth-child(5) button {
background: #52b6e8;
}
$el.x-tabs ul>li:nth-child(6) button {
background: #d9b310;
}
$el.x-tabs ul>li:last-of-type button {
background: #d9b310;
}
.x-tabs .x-tabs-list {
z-index: 999;
overflow-x: visible;
overflow-y: visible;
}
As for splitting my info in two colums, I simply used the content blocks and voilà!
Thank you for all the help and sticking with my, much appreciated!
Cased closed 