ResolvedButtons & Fonts Responsive

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #20122
    Carlos
    Participant

    Hi 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_iphone

    I 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,
    Carlos

    #20135
    Althemist
    Keymaster

    Hello Carlos,

    The only way to achieve this would be with custom CSS and media queries.

    Regards,
    Dimitar

    #20157
    Carlos
    Participant

    Hello 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.
    Carlos

    #20171
    Althemist
    Keymaster

    It 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:

    Media Queries for Standard Devices

    Hope this helps.

    Regards,
    Dimitar

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in and have valid license to reply to this topic.

License required for the following item
Login and Registration Log in · Register