Forum Replies Created

Viewing 20 posts - 1,181 through 1,200 (of 4,903 total)
  • Author
    Posts
  • in reply to: Maintain Header Image on Scroll Down #111612
    Mahesh
    Participant

    @katiek21532: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    .fixed-header.header-background {
        background-image: url("http://research.al.umces.edu/dnelson/wp-content/uploads/sites/3/2017/02/header-dmn-sm.jpg");
    }

    The theme uses both javascript and css for the shrink, if you want to customize further, I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: Featured Content below page text #111607
    Mahesh
    Participant

    @rolandallen: Add the following code in you child theme’s functions.php.

    /**
     * Loading Parent theme stylesheet
     *
     */
    add_action( 'wp_enqueue_scripts', 'catchkathmandu_child_enqueue_styles' );
    function catchkathmandu_child_enqueue_styles() {
        wp_enqueue_style( 'catchkathmandu-parent-style', get_template_directory_uri() . '/style.css' );
    }
    
    function catchkathmandu_child_featured_content_below_main(){
    	remove_action( 'catchkathmandu_main', 'catchkathmandu_homepage_featured_display', 10 );
    	remove_action( 'catchkathmandu_after_secondary', 'catchkathmandu_homepage_featured_display', 10 );
    	remove_action( 'catchkathmandu_before_main', 'catchkathmandu_homepage_featured_position', 10 );
    	add_action( 'catchkathmandu_content_after_content', 'catchkathmandu_homepage_featured_display', 10 );
    }
    add_action('init', 'catchkathmandu_child_featured_content_below_main');

    Then create footer.php file in your child theme and add the following codes:

    <?php
    /**
     * The template for displaying the footer.
     *
     * Contains the closing of the id=main div and all content after
     *
     * @package Catch Themes
     * @subpackage Catch Kathmandu
     * @since Catch Kathmandu 1.0
     */
    ?>
    
    	<?php 
        /** 
         * catchkathmandu_content_sidebar_end hook
         *
         * @hooked catchkathmandu_content_sidebar_wrap_end - 10
    	 * @hooked catchkathmandu_third_sidebar - 15
         */
        do_action( 'catchkathmandu_content_sidebar_end' ); 
        ?> 
        <div style="clear: both;"></div>
        <?php do_action( 'catchkathmandu_content_after_content' );  ?> 
    
    	</div><!-- #main .site-main -->
        
    	<?php 
        /** 
         * catchkathmandu_after_main hook
         */
        do_action( 'catchkathmandu_after_main' ); 
        ?> 
        
    	<footer id="colophon" role="contentinfo">
    		<?php
            /** 
             * catchkathmandu_before_footer_sidebar hook
             */
            do_action( 'catchkathmandu_before_footer_sidebar' );    
    
    		/* A sidebar in the footer? Yep. You can can customize
    		 * your footer with three columns of widgets.
    		 */
    		get_sidebar( 'footer' ); 
    
    		/** 
    		 * catchkathmandu_after_footer_sidebar hook
    		 */
    		do_action( 'catchkathmandu_after_footer_sidebar' ); ?>   
               
            <div id="site-generator" class="container">
    			<?php 
                /** 
                 * catchkathmandu_before_site_info hook
                 */
                do_action( 'catchkathmandu_before_site_info' ); ?>  
                        
            	<div class="site-info">
                	<?php 
    				/** 
    				 * catchkathmandu_site_info hook
    				 *
    				 * @hooked catchkathmandu_footer_content - 10
    				 */
    				do_action( 'catchkathmandu_site_generator' ); ?> 
              	</div><!-- .site-info -->
                
    			<?php 
                /** 
                 * catchkathmandu_after_site_info hook
                 */
                do_action( 'catchkathmandu_after_site_info' ); ?>              
           	</div><!-- #site-generator --> 
            
            <?php
            /** 
    		 * catchkathmandu_after_site_generator hook
    		 */
    		do_action( 'catchkathmandu_after_site_generator' ); ?>  
                   
    	</footer><!-- #colophon .site-footer -->
        
        <?php 
        /** 
         * catchkathmandu_after_footer hook
    	 *
         * @hooked catchkathmandu_scrollup - 10
         */
        do_action( 'catchkathmandu_after_footer' ); 
        ?> 
        
    </div><!-- #page .hfeed .site -->
    
    <?php 
    /** 
     * catchkathmandu_after hook
     */
    do_action( 'catchkathmandu_after' );
    
    wp_footer(); ?>
    
    </body>
    </html>

    Regards,
    Mahesh

    in reply to: Unable to remove code on footer #111606
    Mahesh
    Participant

    @guzie: Its in customize option. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Footer Editor Options and edit content in Footer Editor option.

    Regards,
    Mahesh

    Mahesh
    Participant

    @plastes-de: Thanks, now I got what you mean. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    .wrapper {
        width: 100%;
    }
    #page {
        width: 1200px;
        margin: 0 auto;
    }

    Regards,
    Mahesh

    in reply to: How to add social icon to footer #111603
    Mahesh
    Participant

    @kiana: There has been a small bug in the theme due to which, CT: Social Icon is not working. This will be fixed in the next update.
    Please refer to the link below for the dimension of the featured slider in the theme instruction.
    https://catchthemes.com/theme-instructions/clean-education/#featured-image
    Yes, you can add the logo of your desired size.

    Footer editor option is only available on Pro version. I recommend you to upgrade to Pro.

    Regards,
    Mahesh

    in reply to: Change font/size of posts titles #111602
    Mahesh
    Participant

    @jvece1: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    #primary .hentry .entry-title {
        font-family: Times New Roman;
        font-size: 30px;
    }

    Regards,
    Mahesh

    in reply to: Slider Image Quality #111601
    Mahesh
    Participant

    @richy: Just tested the same on our server and no such issue. Full size image is being used. Have you customized the theme or using any plugins? If yes, please disable the plugins and try again. You are using child theme. Does to problem persist with parent theme too? Let me know further.

    Regards,
    Mahesh

    in reply to: theme upgrade problem #111600
    Mahesh
    Participant

    @ikh1: No such coded in our child theme’s functions.php. Please make you’ve updated the theme successfully. Please post in your site url. Theme options option was removed from the theme in the latest update.

    Regards,
    Mahesh

    in reply to: Header Highlight Content #111599
    Mahesh
    Participant

    @veronicageraci: You’ll need to customize the theme further for this through child theme. You can find more details on creating child theme HERE. I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: Issues when viewing Fabulous Fluid Pro in IE 11 #111598
    Mahesh
    Participant

    @jennifersimsdesign-com-au: Test on IE 11 everything’s working fine. Please post in your site url. If you are using any plugins, please disable and try again. Please check our demo.
    https://catchthemes.com/demo/fabulous-fluid/

    Regards,
    Mahesh

    in reply to: Delete information from blog page #111597
    Mahesh
    Participant

    @wouwonline: You could make it the page instead of post. (recommended)
    But if you prefer it to make it post but appear as page, this is possible too. You can simply hide them using CSS:

    .single-post.postid-46 .post-navigation {
    	display: none;
    }
    
    .single-post.postid-46 #comments {
    	display: none;
    }
      
      .single-post.postid-46 #main .entry-meta {
    	display: none;
    }

    For disabling comments, there is another option. Go to edit post page, then click on Screen Option at the top right of the page just beside Help. Some options will slide down. Check discussion option. Then scroll down to Discussion accordion and make sure Allow comments is unchecked. Click update.

    Regards,
    Mahesh

    in reply to: Comment Placeholder Missing #111596
    Mahesh
    Participant

    @pascal: The change was done to avoid some difficulty that changing the placeholder values through child theme. And since it was hard coded through js in the before version. It was removed. But you and customize it using child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php add the following codes:

    /* Add Placehoder in comment Form Fields (Name, Email, Website) */
     
    add_filter( 'comment_form_default_fields', 'help4cms_comment_placeholders' );
    function help4cms_comment_placeholders( $fields )
    {
        $fields['author'] = str_replace(
            '<input',
            '<input placeholder="Name..."',
            $fields['author']
        );
        $fields['email'] = str_replace(
            '<input',
            '<input placeholder="[email protected]..."',
            $fields['email']
        );
        $fields['url'] = str_replace(
            '<input',
            '<input placeholder="Website..."',
            $fields['url']
        );
        return $fields;
    }
     
    /* Add Placehoder in comment Form Field (Comment) */
    add_filter( 'comment_form_defaults', 'help4cms_textarea_placeholder' );
     
    function help4cms_textarea_placeholder( $fields )
    {
      
            $fields['comment_field'] = str_replace(
                '<textarea',
                '<textarea placeholder="Your thoughts.."',
                $fields['comment_field']
            );
       
     
        return $fields;
    }

    Note: Replace the placeholder values as you desire.

    Regards,
    Mahesh

    Mahesh
    Participant

    @plastes-de: Checked your site, the size of header is same as the size of the content. Let me know further.

    Regards,
    Mahesh

    Mahesh
    Participant

    @lucinda-romeijn: You can dequeue fitvid by creating child theme and add the following code in your child theme’s functions.php

    function catchevolution_child_dequeue_scripts(){
    	wp_dequeue_script( 'jquery-fitvids' );
    }
    add_action( 'wp_print_scripts', 'catchevolution_child_dequeue_scripts' );

    You can find more detials on creating child theme HERE.

    Regards,
    Mahesh

    in reply to: Featured Content below page text #111522
    Mahesh
    Participant

    @rolandallen: For that you’ll need to create a child theme and use add_action on another hooks. You can find more details on creating child theme HERE.

    Regards,
    Mahesh

    in reply to: Randomizing uploaded headers option #111511
    Mahesh
    Participant

    @abusbee: Your web hosting is provided with caching service, which is why the issue is occurring. Yes, please contact godaddy. It is caching your site that’s why random header isn’t working as it should.

    Regards,
    Mahesh

    in reply to: Featured Slider – alt="" Tag #111507
    Mahesh
    Participant

    @marie21: Sorry, this is not possible with CSS.

    Regards,
    Mahesh

    in reply to: Caption under Entry Thumbnails #111506
    Mahesh
    Participant

    @bodycontest: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Featured Image Slider #111504
    Mahesh
    Participant

    @keelin:
    1. Made some correction in the above code, please use it.
    2. Add the following CSS:

    .fixed-header.header-background {
        background-color: #b2b2b2
    }

    3. No, this won’t be affected by theme updates. You won’t lose anything in updates unless the changes are made in the theme files itself.

    Regards,
    Mahesh

    in reply to: Remove "Permalinkto:" flyer from the homepage #111502
    Mahesh
    Participant

    @uukuniemi: Glad to know you’ve resolved your issue. Have a nice day!

    Regards,
    Mahesh

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