Tagged: icon box
Hi,
Can you tell me how I can change the font size/type that is displayed as the ‘title’ and ‘content’ when using the icon box function please.
Many thanks
Hi Chris!
You can use this on Quick CSS to change the title:
.iconbox .iconbox_content .iconbox_content_title {
border: medium none;
padding: 2px 0 0 0;
position: relative;
margin: 0 0 16px 0;
clear: none;
overflow: hidden;
letter-spacing: 1px;
text-transform: uppercase;
font-size: 19px;
}
Use this one for the iconbox content:
.iconbox_content_container {
font-size: 15px;
color: red;
}
Best regards,
Ismael
Hi!
Please try adding !important rule as following
h3.iconbox_content_title {
font-size: 20px!important;
}
.iconbox_content_container {
font-size: 14px!important;
}
Regards,
Yigit
Hi!
If you are using CSS minifying feature on a plugin, please make sure to disable it
Cheers!
Yigit
Hey!
Please flushing cache and check if that helps. Also make sure that you do not have typo’s in your custom CSS codes.
Do you mind creating a temporary admin login and posting it here privately so we can look into it?
Best regards,
Yigit
Hey!
Login credentials are not working for me. If you would like us to have a look, can you please check them once again?
Regards,
Yigit
Hi!
The media query is not properly closed. We edited the Quick CSS code. Remove the inline style then check the site again.
Best regards,
Ismael
Hi!
It is a small typo. Media queries should be added as following
@media only screen and (max-width: 480px) {
body { font-size: 14px; }
}
Regards,
Yigit
EDITED