ResolvedButtons & Fonts Responsive
- This topic has 3 replies, 2 voices, and was last updated 3 years, 3 months ago by
Althemist.
- AuthorPosts
- December 1, 2019 at 9:03 pm #20122
Carlos
ParticipantHi there,
It’s possible to change the font size for phones and tablets using shortcodes as a Responsive way?
For example: nd_options_font_size_20_important_all_iphoneI would also like to know how I can change the size and the font size of the buttons in the sidebar cart. Some German words are very long and the buttons inside the column overlap.
Thank you very much for the help!
Regards,
CarlosDecember 2, 2019 at 4:27 pm #20135Althemist
KeymasterHello Carlos,
The only way to achieve this would be with custom CSS and media queries.
Regards,
DimitarDecember 2, 2019 at 7:37 pm #20157Carlos
ParticipantHello Dimitar,
thank you very much for the answer!
I have tried with several @media queries codes (@media screen, @media all, etc), but I can’t change the size Fonts. Responsive Fonts and text are very important in my case.
If I’m not wrong, CSS codes is standard for all WP Themes, but maybe you already know what custom code fits best for your Theme. I’ve tried everything and I don’t get it!
About the the buttons in the sidebar cart ,any ideas a little more accurate?
Thank you very much in advance for your help.
CarlosDecember 3, 2019 at 3:25 pm #20171Althemist
KeymasterIt wouldn’t work like this. You’d need to use screen size media queries and device specific media queries for iPhones, like these:
@media only screen and (max-width: 979px) { /* your-styles-here */ } @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) { /* your-styles-here */ }
You can find more in formation on device-specific styles here:
Hope this helps.
Regards,
Dimitar - AuthorPosts
You must be logged in and have valid license to reply to this topic.