Forum Replies Created

Viewing 20 posts - 4,181 through 4,200 (of 4,908 total)
  • Author
    Posts
  • in reply to: Increase indent of child menu items on mobile #87218
    Mahesh
    Participant

    Hi @dmonserud,

    I’ve managed the changes in the child theme and you can download the child theme’s zip in the following link. Hope it helps.
    http://bit.ly/1UgYXs3

    Regards,
    Mahesh

    in reply to: Increase indent of child menu items on mobile #87212
    Mahesh
    Participant

    Hi @dmonserud,

    Nothing to check in your site. Just “Website Coming Soon” page is there…..
    Please make sure you are using the child theme, not the parent theme. And do you get any errors?

    Regards,
    Mahesh

    in reply to: Promotion Headline and Featured Content Spacing #87211
    Mahesh
    Participant

    Hi @husker,

    The space between Promotion Headline and Featured Content is just some paddings.

    Regards,
    Mahesh

    in reply to: Misspelled Words in Comments #87210
    Mahesh
    Participant

    Hi @tivonjohnson,

    Seems like a plugin issue. Working fine on our server. From when actually the issue arose? Please try disabling plugin and check again.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Problem Adventurous Pro Mobile Menu #87209
    Mahesh
    Participant

    Hi @adriana,

    We’ve checked your site, and you are used some plugins to compress you site so we couldn’t see your site’s source. Please check the demo link below:
    https://catchthemes.com/demo/adventurous/
    If you are facing same issue with demo too, let us know. If not, then it is not a theme issue, may be some plugin may have caused it, please try disabling plugins one by one and check if the issue is fixed. If you’ve made some customization to the theme, it may be causing the issue too.

    Regards,
    Mahesh

    in reply to: Share Icon/Links for Each Blog Post #87203
    Mahesh
    Participant

    Hi @soulmister,

    Thank you for using Clean Journal Pro. No, the feature you are seeking is not available in the theme. I recommend you to find an appropriate plugins in WordPress.org. You can search for the plugins in the link below:
    https://wordpress.org/plugins/

    Regards,
    Mahesh

    in reply to: Edit footer #87202
    Mahesh
    Participant

    Hi @nuzzina,

    I’ve posted the answer in other thread, so I’ll skip this post.
    Please do not post the same issue multiple times.

    Regards,
    Mahesh

    in reply to: Style Header Right Text Widget #87201
    Mahesh
    Participant

    Hi @ash,

    Please post in your site url.

    Regards,
    Mahesh

    in reply to: Cannot install Simple Catch Pro version 3.3 #87200
    Mahesh
    Participant

    Hi @rflores,

    For that, you’ll need to remove the code in child theme’s functions.php that I provided you earlier and run Regenerate Thumbnails once.
    As you are using post’s featured image in your slider and uploading 212 x 212 square image won’t fix the issue as slider will use the new uploaded image too.
    Hope I made you clear.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Increase indent of child menu items on mobile #87199
    Mahesh
    Participant

    Hi @dmonserud,

    Please post in your site url.

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @nonno-john,

    Add one of the following CSS in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box as required:
    1. Reducing featured content title’s font size in mobile devices:

    @media screen and (max-width: 480px) {
        #featured-content .hentry .entry-header .entry-title > a {
            font-size: 12px;
            line-height: 1;
        }
    }

    2. Eliminating featured content title in mobile devices:

    @media screen and (max-width: 480px) {
        #featured-content .hentry .entry-header {
    	display: none;
        }
    }

    Regards,
    Mahesh

    in reply to: Adding a link to the footer #87197
    Mahesh
    Participant

    Hi @nuzzina,

    If you want to customize the footer text, I recommend you to upgrade to Pro version. But if you prefer to add extra link in Free version, 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 following codes.

    function clean_box_child_footer_content() {
        delete_transient( 'clean_box_footer_content' );
        if ( ( !$clean_box_footer_content = get_transient( 'clean_box_footer_content' ) ) ) {
            echo '<!-- refreshing cache -->';
    
            $clean_box_content = clean_box_get_content();
    
            $clean_box_footer_content =  '
            <div id="site-generator" class="two">
                <div class="wrapper">
                    <div id="custom-links">
                        <a title="Link 1" href="#" target="_self">Link 1</a> |
                        <a title="Link 2" href="#" target="_self">Link 2</a>
                    </div>
                    <div id="footer-left-content" class="copyright">' . $clean_box_content['left'] . '</div>
    
                    <div id="footer-right-content" class="powered">' . $clean_box_content['right'] . '</div>
                </div><!-- .wrapper -->
            </div><!-- #site-generator -->';
    
            set_transient( 'clean_box_footer_content', $clean_box_footer_content, 86940 );
        }
    
        echo $clean_box_footer_content;
    }
    
    add_action('init', 'clean_box_child_add_links_in_footer');
    function clean_box_child_add_links_in_footer() {
        remove_action( 'clean_box_footer', 'clean_box_footer_content', 100 );
        add_action( 'clean_box_footer', 'clean_box_child_footer_content', 100 );
    }

    Note: Please change the title and href attributes of the anchor tags to your desired title and links. If you want the link to open link in the save window/tab leave the target attribute as it is but if you want it to open in new tab, replace “_self” with “_blank”.

    Regards,
    Mahesh

    in reply to: Line height #87145
    Mahesh
    Participant

    Hi @beate_altmannhotmail-com,

    Do you mean to reduce space gap between <p> tag in the content area?
    Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following:

    .entry-content p {
        margin-bottom: 20px;
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Increase indent of child menu items on mobile #87142
    Mahesh
    Participant

    Hi @dmonserud,

    The dashes is added by tinynav jquery plugin used by the theme. That is why you didn’t find it in catchkathmandu-menus.php.
    First, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in you child theme’s functions.php, add the following codes:

    add_action( 'wp_enqueue_scripts', 'catchkathmandu_child_modify_menu' );
    function catchkathmandu_child_modify_menu(){
    	wp_deregister_script('catchkathmandu-menu', get_template_directory_uri() . '/js/catchkathmandu-menu.min.js', array('jquery'), '20140317', true);
    	wp_deregister_script('catchkathmandu-allmenu', get_template_directory_uri() . '/js/catchkathmandu-allmenu.min.js', array('jquery'), '20140317', true);
    	wp_register_script('catchkathmandu-allmenu', get_stylesheet_directory_uri() . '/catchkathmandu-allmenu.js', array('jquery'), '20140317', true);
    	wp_register_script('catchkathmandu-menu', get_stylesheet_directory_uri() . '/catchkathmandu-menu.js', array('jquery'), '20140317', true);
    }

    Then copy catchkathmandu-allmenu.js and catchkathmandu-menu.js files from Catch Kathmandu (Parent Theme) folder/js to Catch Kathmandu Child theme’s root directory. And in both copied js file, go to line 9 and add number of dashes ‘-‘ in indent option, so it would look as follows:
    'indent' : '---- ',
    Note: Added 3 more dashes to make 4 as you’ve mentioned above.

    Let me know if this helped with your issue.

    Regards,
    Mahesh

    in reply to: Adding Max Screen Width #87136
    Mahesh
    Participant

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

    Regards,
    Mahesh

    in reply to: How can I edit post information? #87135
    Mahesh
    Participant

    Hi @sziszi,

    Thank you very much for your valuable review and a 5 star rating. 🙂

    Regards,
    Mahesh

    in reply to: Update package for 4.5.2 not available #87116
    Mahesh
    Participant

    Hi spacer,

    You can update only free theme with Update Now button in the theme’s page. But for pro you’ll need to download the updated theme from your Catch Theme’s Account page.
    Please check the video and theme instructions in the link below:
    1. Video Tutorial: https://www.youtube.com/watch?v=W95SuabDZi8
    2. Theme Instruction (Theme Update) – https://catchthemes.com/theme-instructions/catch-box-pro/#updating
    Catch Box Pro’s latest available version is 4.5.2

    Note: You can download catch updater plugin from link below:
    https://catchthemes.com/wp-plugins/catch-updater/

    There is no problem in updating Catch Box Free version and latest available version in WordPress.org is Catch Box 4.3.6

    Let me know if you have any trouble.

    Regards,
    Mahesh

    in reply to: Adding Max Screen Width #87109
    Mahesh
    Participant

    Hi @andrewf90,

    This can be achieved with Custom CSS. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    .wrapper {
        max-width: 1260px;
    }

    Let me know if this helps with your issue.

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @nonno-john,

    Yes, this can be done with Custom CSS. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    #featured-content.layout-three .hentry {
        float: left;
        width: 33.33%;
    }

    Regards,
    Mahesh

    in reply to: Cannot install Simple Catch Pro version 3.3 #87106
    Mahesh
    Participant

    Hi @rflores,

    This is because, we add the code in child theme’s functions.php so that the image’s aspect ratio is maintained and not be cut off to show only the middle part of the image like it had before by default which was your issue. Now if you upload the image, it will be resized to 210px with aspect ratio maintained (if you upload a rectangle image, the resized thumbnail will also be a rectangle not 210px x 210px square).
    Hope you understand.

    Regards,
    Mahesh

Viewing 20 posts - 4,181 through 4,200 (of 4,908 total)