Forum Replies Created

Viewing 20 posts - 3,901 through 3,920 (of 4,908 total)
  • Author
    Posts
  • in reply to: Customizer Stop Work at Jomsom Pro WP 4.5 #89529
    Mahesh
    Participant

    @skynet: I assume you’ve seen the quick fix in the following thread.
    https://catchthemes.com/support-forum/topic/image-no-space-bug/#post-89528

    Regards,
    Mahesh

    in reply to: Image no space Bug #89528
    Mahesh
    Participant

    @skynet: This issue will be fixed in the next update. For quick fix now, edit the file jomsom-pro/inc/customizer-inclues/jomsom-customizer.php and comment or remove line 125 and the customizer will work normally.

    Regards,
    Mahesh

    in reply to: Fatal error in home.php #89525
    Mahesh
    Participant

    @sayuri: I checked your site and seems you are using really old version of the theme. The latest theme version available is 3.6. I recommend you to upgrade to Pro and check if the issue resolves.
    Let me know if any problem occurs.

    Regards,
    Mahesh

    in reply to: Change Homepage Headline – Catch Everest FREE Theme #89524
    Mahesh
    Participant

    @elenan: Please use the Custom CSS for now, the issue will be fixed in the next update. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS;

    #hgroup {
        display: none;
    }

    Regards,
    Mahesh

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

    @mupa: Use the following CSS:

    @media screen and (max-width: 767px) {
        article.hentry {
            padding: 0;
        }
        #page .wrapper {
            padding: 0;
        }
        article.hentry .featured-image img {
            width: 100%;
        }
    }

    Regards,
    Mahesh

    in reply to: Mobile menu slide (BUG) #89347
    Mahesh
    Participant

    @skynet: The problem is due to viewport. Please edit jomsom-pro/inc/jomsom-structure.php and go to line 44 and replace following line:
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    with this.
    <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
    This will fix the menu issue. This will be fixed in the upcoming version.

    Regards,
    Mahesh

    Mahesh
    Participant

    @mupa: For that, add the following Custom CSS:

    .widget_text .textwidget img {
        float: left;
        width: 20%;
    }

    Let me know if any issue occurs.
    Regards,
    Mahesh

    in reply to: Not letting me change Sub-headline for Featured Content #89344
    Mahesh
    Participant

    @ottereli: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Pictures distorted on iPad #89343
    Mahesh
    Participant

    @fishingguy: Glat to know your issue is resolved. Have a nice day!

    Regards,
    Mahesh

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

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

    #content .wrapper .widget {
        padding: 0;
    }

    Regards,
    Mahesh

    in reply to: Incorrect colors since update #89246
    Mahesh
    Participant

    @kigazw: Oh that’s great. 🙂
    Sorry for the inconvenience.

    Regards,
    Mahesh

    in reply to: Pictures distorted on iPad #89238
    Mahesh
    Participant

    @fishingguy: I checked your site and the site is working fine in all devices (desktop, mobile and tablet->ipad). Everything seems to be working fine.
    May be cache problem, try clearing cache. Let me know if the problem persists.

    Regards,
    Mahesh

    in reply to: Header Images are cut #89235
    Mahesh
    Participant

    @feliciano200: Go to Dashboard=> Appearance=> Customize=> Theme Option=> Custom CSS
    Note: You have an error in your Custom CSS, there is a missing closing brace at the end. Please put a closing curly brace first.
    Then add the following CSS:

    @media screen and ( min-width: 991px ) {
        #feature-slider {
            margin-top: 88px;
        }
    
        #menu-legalmenu {
            float: left;
    	width: 85%;
        }
    
        #logo-icon {
            width: 15%;
        }
    }

    Regards,
    Mahesh

    in reply to: Incorrect colors since update #89228
    Mahesh
    Participant

    @jbot: Update has been released and is now available. Please update.


    @kigazw
    : Thank you for pointing out the issue. Have a nice day!

    Regards,
    Mahesh

    in reply to: put site logo before site title #89225
    Mahesh
    Participant

    @feliciano200: Use the following link for Full Frame Free support.
    https://catchthemes.com/support-forum/forum/full-frame-free/
    1. Make Logo Bigger:
    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #logo-icon img {
        max-height: 60px;
    }

    Note: Please adjust(increase or decrease) the max-height property in the above code as required.

    2. Edit Footer:
    This feature is only available in Pro version, I recommend you to upgrade to Full Frame Pro. However, you can use child theme and make some customization to change footer contents.

    Regards,
    Mahesh

    in reply to: Incorrect colors since update #89219
    Mahesh
    Participant

    @kigazw: There has been a small bug in the theme and always overriding color scheme with default color scheme, we’ll be releasing a quick fix update soon. Thank you for your patience.

    Regards,
    Mahesh

    in reply to: Stop slider pause when hovering #89212
    Mahesh
    Participant

    @susiemoss: For that, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php, add the code from the link below:
    http://goo.gl/BYDsoV
    Note: Please make sure you’ve cleared cache or transient.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: automatically change width of sub menu entry #89206
    Mahesh
    Participant

    @mupa: I’m afraid this is not possible. Main menu items have flexible but all sub-menus have same width as you’ve mentioned, and gets messed up when set to flexible width.

    Regards,
    Mahesh

    in reply to: Not letting me change Sub-headline for Featured Content #89202
    Mahesh
    Participant

    @ottereli: You’ll have to edit a small typo in code. Go to gridilicious_theme_folder/inc/customizer_includes/ and open gridalicious-customizer-featured-content-setting.php go to line 139 and change the existing code:
    'sanitize_callback' => 'wp_kese_post',
    to
    'sanitize_callback' => 'wp_kses_post',
    Note: Line number may vary with theme version. If so, search for wp_kese_post in that very file and replace with wp_kses_post
    Then you’ll be good to go and change it via customizer.
    Thank you for helping us finding the issue.

    Regards,
    Mahesh

    in reply to: Change Homepage Headline – Catch Everest FREE Theme #89199
    Mahesh
    Participant

    @adunning: No, its the same in Pro version too. You’ll need to create a child theme and do some customization.
    Please download the child theme from this blog link below
    https://catchthemes.com/blog/create-child-theme-wordpress/

    Regards,
    Mahesh

Viewing 20 posts - 3,901 through 3,920 (of 4,908 total)