This topic has 12 replies, 2 voices, and was last updated 4 years, 8 months ago ago by Rose Tyler
how could i do put in child css the sizes for mobile text: example:
h1: 1em,
h2: 2em,
p: 0.5em,
etc.
because the text is too large on the mobile
and I want to be on the desktop a text size, and a mobile text size
Hello,
To apply custom CSS code for mobile, you can use appropriate area in Theme Custom CSS or media query – https://www.w3schools.com/css/css_rwd_mediaqueries.asp
For example, this code can be added in style.css of your child theme:
@media only screen and (max-width: 480px) {
h1 {
font-size: 1em !important;
}
h2 {
font-size: 2em !important;
}
p {
font-size: 0.5em !important;
}
}
Regards
Thank you very much you are the best.
Please help me with something else, how to find this string to translate with locotranslate
https://prnt.sc/r9hdkx
You’re welcome!
Do you use an additional plugin to calculate the discount or it is a part of default WooCommerce functionality? Have you checked the translation of WooCommerce plugin? Make sure that translation files are updated – https://www.8theme.com/documentation/xstore/theme-translation/translation-files-update/ If this doesn’t help, provide temporary wp-admin access, so we can take a closer look.
Regards
yes I use a WooCommerce Ultimate Points and Rewards plugin,
but I still can’t find it, I searched everywhere
If the text comes from the plugin, but can’t be translated, contact support of the plugin.
Sorry, but we are theme support, so we are able to help with questions related to our theme only.
Regards
ok thank you
You’re welcome! Thanks for understanding.
Regards
ok you can tell me how to put icons in the menu only on the mobile version
Hello,
Do you want to hide current icons from desktop http://prntscr.com/r9j5rz ? Add the next code in Theme Options > Theme Custom CSS > Custom CSS for desktop:
.et_b_header-menu i {
display: none !important;
}
Regards
thank you
You’re welcome!
Regards
You must be logged in to reply to this topic.Log in/Sign up