Works only with the total theme Framework. If a post has the custom Meta "enym_custom_meta"…
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;
}
Comments (0)