Forum Replies Created

Viewing 20 posts - 2,221 through 2,240 (of 4,908 total)
  • Author
    Posts
  • in reply to: Multiple buttons on first page #103622
    Mahesh
    Participant

    @fredericf: Thank you for you appreciation. Let me know if any problem. Have a nice day!

    Regards,
    Mahesh

    in reply to: H1 heading #103621
    Mahesh
    Participant

    @promomusic: If you want to have only one H1 tag, you can change it by building child theme and editing it. You can find more details on creating child theme HERE.. I recommend you to hire a customizer. Let me help you if any problem.

    Regards,
    Mahesh

    Mahesh
    Participant

    @kjelll: Thanks for clarifying more. How much are you familiar with programming and coding. You’ll definitely need some good programing skills for this. You’ll need to add some functions and use add_action with appropriate hook, to display where needed. I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: featured content center but justified #103507
    Mahesh
    Participant

    @floh: Please post in your site url. And can you please clarify more.

    Regards,
    Mahesh

    in reply to: H1 header tags on Primary menu #103506
    Mahesh
    Participant

    @photogold: Yes, same code.

    Regards,
    Mahesh

    in reply to: Parallax scrolling #103501
    Mahesh
    Participant

    @adamjr: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Simple Catch Update #103500
    Mahesh
    Participant

    @tosgood: No, only Pro version is responsive.

    Regards,
    Mahesh

    in reply to: 404-page uses content of optional archive sidebar if available #103496
    Mahesh
    Participant

    @gmg-jet: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Featured pages/posts #103494
    Mahesh
    Participant

    @mvitale: Yes, this feature is available along with more features. Please upgrade to pro.

    Regards,
    Mahesh

    Mahesh
    Participant

    @kjelll: As far as I understand what you are trying to do, I’m afraid it won’t work that way. Changing few design with CSS or adding a few elements to the HTML can be done and possible through Child theme. But add the whole template into the theme file won’t work like that.
    Hope you understand. If you do want to have the design of the template you’ve purchased, I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: H1 header tags on Primary menu #103492
    Mahesh
    Participant

    @photogold: 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 following code:

    function clean_box_primary_menu() {
        $options  = clean_box_get_theme_options();
    	?>
        <div id="fixed-header-top">
            <div class="wrapper">
                <div id="mobile-primary-menu" class="mobile-menu-anchor fixed-primary-menu">
                    <a href="#mobile-primary-nav" id="primary-menu-anchor" class="genericon genericon-menu">
                        <span class="mobile-menu-text screen-reader-text">
                            <?php esc_html_e( 'Menu', 'clean-box' ); ?>
                        </span>
                    </a>
                </div><!-- #mobile-primary-menu -->
    
                <?php
                    $logo_alt = ( '' != $options['logo_alt_text'] ) ? $options['logo_alt_text'] : get_bloginfo( 'name', 'display' );
    
                    if ( isset( $options[ 'logo_icon' ] ) &&  $options[ 'logo_icon' ] != '' &&  !empty( $options[ 'logo_icon' ] ) ){
                         echo '<div id="logo-icon"><a href="' . esc_url( home_url( '/' ) ) . '" title="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" rel="home">
                            <img src="' . esc_url( $options['logo_icon'] ) . '" alt="' . esc_attr( $logo_alt ). '">
                        </a></div>';
                    }
                ?>
    
               <nav class="nav-primary search-enabled" role="navigation">
                    <div class="screen-reader-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'clean-box' ); ?>"><?php _e( 'Skip to content', 'clean-box' ); ?></a></div>
                    <?php
                        if ( has_nav_menu( 'primary' ) ) {
                            $clean_box_primary_menu_args = array(
                                'theme_location'    => 'primary',
                                'menu_class'        => 'menu clean-box-nav-menu',
                                'container'         => false
                            );
                            wp_nav_menu( $clean_box_primary_menu_args );
                        }
                        else {
                            wp_page_menu( array( 'menu_class'  => 'menu clean-box-nav-menu' ) );
                        }
    
                        ?>
                </nav><!-- .nav-primary -->
    
                <div id="header-toggle">
                    <a href="#header-toggle-sidebar" class="genericon"><span class="header-toggle-text screen-reader-text"><?php _e( 'Show Header Sidebar Content', 'clean-box' ); ?></span></a>
                </div>
    
                <div id="header-toggle-sidebar" class="widget-area displaynone" role="complementary">
                    <?php if ( is_active_sidebar( 'header-toggle' ) ) { ?>
                        <?php dynamic_sidebar( 'header-toggle' ); ?>
                    <?php
                    }
                    else { ?>
                        <section class="widget widget_search" id="header-serach">
                            <?php get_search_form(); ?>
                        </section>
    
                        <?php
    
                        if ( '' != ( $clean_box_social_icons = clean_box_get_social_icons() ) ) { ?>
                            <section class="widget widget_clean_box_social_icons" id="header-social-icons">
                                <div class="widget-wrap">
                                    <?php echo $clean_box_social_icons; ?>
                                </div>
                            </section>
                        <?php
                        }
                    }
                    ?>
                </div><!-- #header-toggle-sidebar -->
            </div><!-- .wrapper -->
        </div><!-- #fixed-header-top -->
        <?php
    }

    Regards,
    Mahesh

    in reply to: Help. Need to change drop down menu #103491
    Mahesh
    Participant

    @sana: Sorry but this is Support Forum for themes and plugins by Catch Themes only. Hope You understand.

    Regards,
    Mahesh

    in reply to: Menu problems #103443
    Mahesh
    Participant

    @wouwonline: Disable header right menu: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Header Options and check Check to Disable Header Right Sidebar option
    Go to Dashboard=> Appearance=> Customize=> Theme Option=> Custom CSS box and add the following CSS:

    #colophon {
        border: none;
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Different in the pages. Reduce to one #103440
    Mahesh
    Participant

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

    Regards,
    Mahesh

    in reply to: Instagram Feed? #103439
    Mahesh
    Participant

    @casimz1986: The demo is a Pro version. This feature (CT: Instagram widget) is only available in Pro version. I recommend you to upgrade to Pro version.

    Regards,
    Mahesh

    Mahesh
    Participant

    @mattshepherd: Thank you for using Clean Journal Pro theme.
    You cannot update Pro themes by just directly Update Now button like Free themes. You’ll need to first download the theme from https://catchthemes.com/my-account/ page. Then use Catch Updater plugin or Catch Updater module of Catch Web Tools plugin.
    https://catchthemes.com/wp-plugins/catch-updater/
    https://wordpress.org/plugins/catch-web-tools/
    Please check the tutorial video in the link below:
    https://www.youtube.com/watch?v=W95SuabDZi8

    Regards,
    Mahesh

    in reply to: Full width header image #103436
    Mahesh
    Participant

    @lba: Just checked your site and didn’t see any space issue with header image on your site. The image is already full width. Have you managed to resolve the issue.

    Regards,
    Mahesh

    in reply to: Menu problems #103435
    Mahesh
    Participant

    @wouwonline: I checked your site and its blank. And about the color options issue, do you get any error message? Let me know futher.

    Regards,
    Mahesh

    Mahesh
    Participant

    @gmg-jet: The issue has been fixed and the update is released. Please update your theme. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Curseur image : plus de pointeurs que d'images #103410
    Mahesh
    Participant

    @marie-flint: I checked the theme on our server and got no such issue. Please try disabling plugins one by one and check if it resolves the issue. Let me know further.

    Regards,
    Mahesh

Viewing 20 posts - 2,221 through 2,240 (of 4,908 total)