/*CAROUSEL ARROWS*/ .wpex-carousel__arrow-icon svg, .wpex-carousel__arrow-icon.wpex-icon, .wpex-carousel__arrow svg /*, .wpex-slider .sp-arrow-inner*/ { display: none; } .wpex-carousel__arrow:where(:not(.theme-button))…
Total Theme: Move Badge on top in Headlines
Usually it is below. But i don’t like it there. Here is some CSS to fix it:
.vcex-heading-w-badge .vcex-heading-inner {
display: flex;
flex-direction: column-reverse;
}
.wpex-badge {
width: fit-content;
}
Total theme specific version:
/*TOTAL THEME MOVE BADGE IN HEADINGS TO TOP*/
.vcex-heading-w-badge .vcex-heading-inner {
display: flex;
flex-direction: column-reverse;
}
.wpex-badge {
width: fit-content;
margin: 0;
padding-bottom: 7px;
background-color: var(--wpex-accent-alt);
font-size: .5em;
border-radius: 0;
}
.vcex-heading-w-badge.wpex-text-center .wpex-badge{
margin: 0 auto;
}