Forum Replies Created

Viewing 20 posts - 3,721 through 3,740 (of 4,908 total)
  • Author
    Posts
  • in reply to: hide mobile menu after a browser "go back action" #91063
    Mahesh
    Participant

    @mupa: I checked your site in both browser’s mobile mode and in mobile’s browser but found no issue that you’ve mentioned above. I opened you website, visited couple of pages there through mobile menu and then clicked back button, the pages are loading fine and the menu remains closed whether I go forward or backward unless I pressed the three bar mobile menu button.

    Regards,
    Mahesh

    in reply to: adding google translate buttons in the head #91061
    Mahesh
    Participant

    @nagesh-seogmail-com: Overriding above function will fix the issue, no need to edit other files. In the above code, replace the following code

    <?php if ( '' != ( $catchresponsive_social_icons = catchresponsive_get_social_icons() ) ) { ?>
        <section class="widget widget_catchresponsive_social_icons" id="header-right-social-icons">
            <div class="widget-wrap">
                <?php echo $catchresponsive_social_icons; ?>
            </div><!-- .widget-wrap -->
        </section><!-- #header-right-social-icons -->
    <?php
    } ?>

    with the following:
    <?php echo do_shortcode(‘[GTranslate]’); ?>
    However, you may need to change some CSS if some design issue occur.
    Hope this helps, let me know if any problem.

    Regards,
    Mahesh

    in reply to: Create widget area in navigation bar (on the right) #91011
    Mahesh
    Participant

    @kat42: You’ll need to override clean_box_primary_menu function. The function is in clean-box/inc/clean-box-menus.php file. You’ll find header-toggle and header-toggle-sidebar div in the function, and it is what you’ll need to replace with your widget.
    Hope this helps.

    Regards,
    Mahesh

    in reply to: Align Header image and Title #91008
    Mahesh
    Participant

    @derfabi2016: Use the following CSS:

    #content .post-231.page .entry-header {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: hide/deactivate Featured Slider on mobile mode #90993
    Mahesh
    Participant

    @mupa: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS and add the following CSS:

    @media screen and (max-width: 480px) {
        #feature-slider {
            display: none;
        }
    }

    Regards,
    Mahesh

    in reply to: Menubar turns into drop-down too early #90983
    Mahesh
    Participant

    @lordinvestor: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #header-menu ul.menu {
    	display: block;
    }
    #header-menu .wrapper {
    	padding: 0;    
    }
    .tinynav {
    	display: none;
    }
    
    @media screen and (max-width: 767px) {
        #header-menu ul.menu {
            display: none;
        }
        .tinynav {
            display: block;
        }
        #header-menu .wrapper {
    	padding: 14px 0;    
        }
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Number of Fetured Content cannot be reduced #90982
    Mahesh
    Participant

    @lbc: Thank you for using Adventurous theme.
    I checked your site and the issue is because of the Custom CSS you are using. Below is the Custom CSS you are using and I’ve commented out the code that is causing the problem please check.

    #masthead #site-logo img {
        max-height: 80px; /* Your desired height for normal header logo */
    }
    
    #masthead.fixed-header #site-logo img {
        max-height: 45px; /* Your desired height for fixed header logo */
    }
    
    /*.container {
        width: 98%;
        padding: 0 10px;
    }*/
    
    #featured-heading{
        width: 100%;
    }
    /*#featured-post.layout-four .featued-content-wrap, #featured-post.layout-three .featued-content-wrap {
        width: 100%;
    }
    
    #featured-post.layout-four .post, #featured-post.layout-three .post {
        width: 23%;
    }*/
    
    @media screen and (min-width: 981px) {
        #primary {
            width: 80%;
        }
    
        #secondary {
            width: 30%;
        }
        #secondary .widget {
            width: auto;
        }
    
        #featured-post .featued-content-wrap {
            margin: 0 auto;
        }
    
        #homepage-message .left-section {
            width: auto;
        }
    }
    
    @media screen and (max-width: 980px) and (min-width: 678px) {
        #primary {
                width: 100%;
        }
    
        #secondary {
            width: 100%;
        }
    
        #secondary .widget {
            margin-left: 20px;
            width: 40%;
        }
        /*#featured-post.layout-four .featued-content-wrap, #featured-post.layout-three .featued-content-wrap {
            margin: 0 auto;
        }
        #featured-post.layout-four .post:nth-child(2n+1), #featured-post.layout-three .post:nth-child(2n+1), #secondary .widget:nth-child(2n+1) {
            clear: none;
        }
        #featured-post.layout-four .post:nth-child(4n+1), #featured-post.layout-three .post:nth-child(3n+1){
            clear: none;
        }
    
        #featured-post.layout-four .post, #featured-post.layout-three .post {
            width: 21%;
        }*/
    }
    
    /*@media screen and (max-width: 767px) {
        .container {
            width: 96%;
        }
        #featured-post.layout-four .post:nth-child(2n+1), #featured-post.layout-three .post:nth-child(2n+1), #secondary .widget:nth-child(2n+1) {
            clear: both;
        }
        #featured-post.layout-four .post:nth-child(4n+1), #featured-post.layout-three .post:nth-child(3n+1) {
            clear: both;
        }
    
        #featured-post.layout-four .post, #featured-post.layout-three .post {
            width: 46%;
        }
    }*/
    
    @media screen and (max-width: 700px) {
        #secondary {
            margin: 0;
            width: 100%;
        }
        #secondary .widget {
            margin-left: 0;
            padding: 10px 4%;
            width: 91%;
        }
    }
    
    /*@media screen and (max-width: 560px) {
        #featured-post.layout-four .post, #featured-post.layout-three .post {
            width: 100%;
        }
        #featured-post.layout-four .post img.wp-post-image, #featured-post.layout-three .post img.wp-post-image {
            display: inline-block;
        }
    }*/
    
    #powered {
          display: none;
    }

    Note: You can either copy the above CSS or remove the commented out codes and use the remaining.

    Regards,
    Mahesh

    in reply to: Mobile Featured Image Slider and Mobile Menu #90981
    Mahesh
    Participant

    @briswatek: Yes, may be images in the slider could have caused the problem. Images increase size of website and the increased size results in more loading time, due to which the above issue could occur. Try reducing number of images and check again to see if it resolves the problem.

    Regards,
    Mahesh

    in reply to: Problems with Featured Slider on Admin Site #90943
    Mahesh
    Participant

    @stephanklein: Glad to know it helped you resolve the issue. Have a nice day.

    Regards,
    Mahesh

    in reply to: Cannot change the icon on a Child Theme #90941
    Mahesh
    Participant

    @leops: There has been a little bug in the theme. This will be fixed in the next theme update which will be released soon. Thank you for letting us find the issue. Thank you for your patience.

    Regards,
    Mahesh

    in reply to: child theme and moving menu under header #90927
    Mahesh
    Participant

    @dotcalm: May be there is some error in your child theme’s style.css file. Try creating child theme again. You can find more details on creating child theme HERE.
    You can find Catch Responsive Child theme (Ready child theme) in the link below:
    http://catchthemes.com/wp-content/uploads/2014/05/catch-responsive-child.zip
    Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Mobile Featured Image Slider and Mobile Menu #90924
    Mahesh
    Participant

    @briswatek: Does the problem occurs with the Catch Responsive Pro theme demo too? Please check and let me know.
    https://catchthemes.com/demo/catch-responsive

    Regards,
    Mahesh

    in reply to: Problems with Featured Slider on Admin Site #90920
    Mahesh
    Participant

    @stephanklein: I checked the theme in our server and found no such issue in customizer. They are all working fine. Do you get any error messages? Are you using any plugins? If yes please try disabling the plugins and check if it resolves the issue.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Blank screen appearing on Customize screen #90919
    Mahesh
    Participant

    @dontheideaguy: It is highly recommended to upgrade PHP version to 5.6 or greater. WordPress also works with PHP 5.2.4+ and MySQL 5.0+, but these versions have reached official End Of Life and as such may expose your site to security vulnerabilities.

    Regards,
    Mahesh

    in reply to: reduce margin/padding in mobile mode #90918
    Mahesh
    Participant

    @mupa: Please use the following CSS:

    @media screen and (max-width: 400px) {
        #feature-slider {
            margin-bottom: 20px;
        }
    }

    Note: Adjust the margin-bottom as per required.

    Regards,
    Mahesh

    in reply to: Align Header image and Title #90917
    Mahesh
    Participant

    @derfabi2016: Glad to know you’ve solved the issue yourself. Have a nice day.

    Regards,
    Mahesh

    in reply to: Main and Footer menus showing on mobile pages #90915
    Mahesh
    Participant

    @kd8mst: The menu in theme is working fine in both desktop and mobile on our server. Have you customized the theme? If you are using any plugins, try disabling the plugin and check if it resolves.
    Let me know if the problem persists.

    Regards,
    Mahesh

    in reply to: tables in mobile mode #90909
    Mahesh
    Participant

    @mupa: Glad to know you made it work. Have a nice day.

    Regards,
    Mahesh

    in reply to: number of featured contents on homepage #90908
    Mahesh
    Participant

    @pulsedata: Yes, the max number of featured content has been increased to 24 and is available in the latest version. The current latest version of the theme available in WordPress.org repository is 2.7.1. The feature is available from Catch Everest 2.7. Please update to the latest version.

    Regards,
    Mahesh

    in reply to: Change menu font #90904
    Mahesh
    Participant

    @fridasofia85: For that add the following CSS in Custom CSS box:

    @font-face {
        font-family: "Indie Flower";
        font-style: normal;
        font-weight: 400;
        src: local("Indie Flower"), local("IndieFlower"), url("https://fonts.gstatic.com/s/indieflower/v8/10JVD_humAd5zP2yrFqw6ugdm0LZdjqr5-oayXSOefg.woff2") format("woff2");
        unicode-range: U+0-FF, U+131, U+152-153, U+2C6, U+2DA, U+2DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
    }
    
    #content .entry-title {
        font-family: "Indie Flower", sans-serif;
    }
    
    @font-face {
        font-family: "Roboto";
        font-style: normal;
        font-weight: 300;
        src: local("Roboto Light"), local("Roboto-Light"), url("https://fonts.gstatic.com/s/roboto/v15/0eC6fl06luXEYWpBSJvXCBJtnKITppOI_IvcXXDNrsc.woff2") format("woff2");
        unicode-range: U+460-52F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
    }
    
    #content .entry-content {
        font-family: "Roboto", sans-serif;
    }

    Note: You have a missing closing curly brace (}) at the end of the Custom CSS, please put a } before add the above CSS.

    Regards,
    Mahesh

Viewing 20 posts - 3,721 through 3,740 (of 4,908 total)