Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #97676
    Dome
    Participant

    hello

    it’s possible to disable responsive style ?

    thanks

    #97681
    Pratik
    Keymaster

    @dome: I am afraid this is not possible. You can try removing codes from styles.css, but its recommended to use a child theme rather than editing the main core theme file.

    #97720
    Dome
    Participant

    i use child theme , try to remove all responsive codes in styles.css and fix width to 1280px , finally it’s look ok in my PC but in my phone it’s only show small screen and i can’t zoom out. this is my website
    http://www.k2.co.th/wordpress_new/
    Can you advise me ?
    thank you.

    #97766
    Pratik
    Keymaster

    @dome:
    I cannot understand what you mean by zoom out, since you have removed responsiveness, it is supposed to be that way. I do not think you will be able to zoom out.

    #97774
    Dome
    Participant

    please see this image .
    http://chonable.com/wp-content/uploads/2015/01/unnamed-2.jpg
    when i open my website in my phone , it displays the same on the left.
    i want to displays the same on the right.
    thank you.

    #97843
    Pratik
    Keymaster

    @Dome: To do that , you will need to do a bit of customization. First, make a child theme. For details about child theme, visit this link.

    Then, add following code in child theme’s functions.php file:

    
    function clean_journal_head() {
    	?>
    	<meta charset="<?php bloginfo( 'charset' ); ?>">
    	<meta name="viewport" content="width=device-width, initial-scale=.5, maximum-scale=12.0, minimum-scale=.25, user-scalable=yes"/>
    	<link rel="profile" href="http://gmpg.org/xfn/11">
    	<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
    	<!--[if lt IE 9]>
    		<script src="<?php echo get_template_directory_uri(); ?>/js/html5.min.js"></script>
    	<![endif]-->
    	<?php
    }
    

    This should work. Let me know how it goes.

    Regards,
    Pratik

    #97880
    Dome
    Participant
    function clean_journal_head() {
    	?>
    	<meta charset="<?php bloginfo( 'charset' ); ?>">
    	<meta name="viewport" content="width=device-width, initial-scale=0.282, user-scalable=yes"/>
    	<link rel="profile" href="http://gmpg.org/xfn/11">
    	<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
    	<!--[if lt IE 9]>
    		<script src="<?php echo get_template_directory_uri(); ?>/js/html5.min.js"></script>
    	<![endif]-->
    	<?php
    }

    this codes work perfectly for my phone 🙂
    thank you very much Pratik !

    #97884
    Dome
    Participant

    and now i find the easy way

    <meta name=”viewport” content=”width=1024px”/>

    Thank you for your guideline Pratik 😉

    #97929
    Pratik
    Keymaster

    @dome: I am glad its solved. If you liked our theme and support, please leave us a review at https://wordpress.org/support/view/theme-reviews/clean-journal#postform.

    Regards,
    Pratik

    #97934
    Dome
    Participant

    sure , i will 😉

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Disable Responsive Style’ is closed to new replies.