• Hello, is it possible to disable the responsive Webdesign. So that the Website is shown on Smartphone the same way as on the desk Version.

Viewing 1 replies (of 1 total)
  • Hello,
    Yes it is possible to make you site “un-responsive from responsive”.
    But you will have to make the changes on the child theme rather than on the core file of the parent theme, just to keep your tweaks and updates safe and sound. To know more about child themes and view the child theme for this parent theme go to:- http://catchthemes.com/blog/create-child-theme-wordpress/

    After, that go to the functions.php file on your child theme and paste the following code.

    function catchbase_remove_media_queries() {
    wp_dequeue_style( 'catchbase-responsive' );
    }
    add_action( 'wp_enqueue_scripts', 'catchbase_remove_media_queries', 20 );

    That might solve your problem.
    If you have any more queries and you want quick,fast and reliable response please visit the themes official support forum :- https://catchthemes.com/support-forum/forum/catch-base-free/

    regards,
    bplv

Viewing 1 replies (of 1 total)
  • The topic ‘Responsive Webdesign’ is closed to new replies.