Viewing 7 replies - 1 through 7 (of 7 total)
  • Most sites that are optimized for mobile don’t need to be zoomed, in fact the whole premise behind a responsive website is so that users don’t have to do the dreaded “pinch-to-zoom”. it’s annoying and not user friendly at all.

    Why exactly do you want that feature on a responsive site?

    can you link to your site?

    Thread Starter Canarias

    (@canarias)

    Yes i think somethimes is it better that someone can zoom in the page, for example to read better the text.
    https://www.gran-canaria.traveltopper.eu and

    Thread Starter Canarias

    (@canarias)

    I don’t know, i think that ist sometimes is better for some persons to read better the texts
    https://www.mechelen.traveltopper.eu and https://www.gran-canaria.traveltopper.eu

    i agree, but instead of enabling the zoom, just use media queries within your theme’s css to increase the text size at smaller screens.

    Thread Starter Canarias

    (@canarias)

    ok thanks and how can i do that please ?

    try adding this to your custom css, or at the bottom of your child theme style.css

    @media only screen and (max-width: 767px) {
        #content h1,
        #content h2,
        #content h3,
        #content h4,
        #content h5,
        #content h6 {
            padding-bottom: 0;
        }
    
        h2 {
            font-size: 36px;
            line-height: 1;
            margin-bottom: 15px
        }
    
        p {
            font-size:20px;
            line-height: 1.4;
        }
    }

    Hello, I too would like this feature… to be able to pinch zoom. It’s poosible on many themes and it would be great to do this on Travelify.

    Steve

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Travelify zoom’ is closed to new replies.