Hi, there are fixed font-sizes in px, which is often a problem. Most content text should be relative with em or rem, only design elements should be a fixed size in px.
You could reach out to the plugin maintainer or theme maintainer and point them here.
This CSS might help.
html body .oxi-tabs-wrapper-1 > .oxi-addons-row > .oxi-tabs-ultimate-style > .oxi-tabs-ultimate-header-wrap .oxi-tabs-main-title {
font-size: 1em;
}
html body .oxi-tabs-wrapper-1 > .oxi-addons-row > .oxi-tabs-ultimate-style > .oxi-tabs-ultimate-content-wrap > .oxi-tabs-ultimate-content > .oxi-tabs-body-tabs p {
font-size: 1em;
}
html body .oxi-tabs-wrapper-1 > .oxi-addons-row > .oxi-tabs-ultimate-style > .oxi-tabs-ultimate-header-wrap .oxi-tabs-sub-title {
font-size: 1em;
}
I am not sure if using rem
is better fitting then em
.
You can change sizes from 1em
to 0.9em
or 1.1em
, so you can play with them.
Does this help?