Hi @KnowledgeWorker,
You have this existing CSS to your child theme’s style.css
.x-btn, .x-btn:hover, .button, .button:hover, [type="submit"], [type="submit"]:hover, .mec-load-more-button, .mec-load-more-button:hover {
color: #ffffff;
border: 2px solid #1c8fc9;
background-color: #1c8fc9;
margin-right: 10px;
margin-top: 5px;
text-shadow: none !important;
box-shadow: none !important;
border-radius: 0.54em;
display: inline-block;
position: relative;
padding-top: 0.75em;
padding-right: 0.76em;
padding-bottom: 0.75em;
padding-left: 0.76em;
cursor: pointer;
font-size: 0.75em;
line-height: 1.2;
text-align: center;
text-transform: uppercase;
vertical-align: middle;
font-family: "Raleway",sans-serif;
font-weight: 600;
letter-spacing: 0.25em;
}
Please change the line
font-size: 0.75em;
to
font-size: 0.75em !important;
The child theme’s style.css is loaded first (child theme first) so your custom CSS is being overridden by the default one.
Thanks!