Hello There,
Thanks for updating in!
1.) That is the default bottom margin of the tab element. If you want to eliminate it, please find this custom css:
.WXHeadline.x-tab-content {
border: none;
box-shadow: none;
color: white;
background: transparent;
}
And replace it with this code instead:
.WXHeadline.x-tab-content {
border: none;
box-shadow: none;
color: white;
background: transparent;
margin-bottom: 0 !important;
}
2.) And to resolve this line gap, you can make use of this css code:
.WXHeadline.x-nav-tabs > .active > a, .x-nav-tabs > .active > a:hover {
border-width: 2px !important;
}
.WXHeadline.x-nav-tabs>li>a, .x-nav-tabs>li>a:hover {
border-bottom: solid 2px transparent;
}
We would loved to know if this has work for you. Thank you.