Forum Replies Created

Viewing 20 posts - 7,841 through 7,860 (of 14,509 total)
  • Author
    Posts
  • in reply to: Child Theme Help #27837
    Sakin
    Keymaster

    @HarveyLo: Yes you can create new child theme with the folder catchevolution-child in theme directory. Then you need to create style.css in your child theme folder. Click Here for the sample style.css

    in reply to: Featured post slider #27836
    Sakin
    Keymaster

    @Viktoria: I see that you are using Catch Kathmandu Free Theme which only have option to use Featured Post Slider or Featured Category Slider. This slider is created to highlight the post. Did you check in Theme Instructions page at http://catchthemes.com/theme-instructions/catch-kathmandu/.

    1. First, you need to create post and add in the Featured image in your post.
    How to add Featured Image in Post?
    * Open the editor of the post where you want to display image, and locate the Featured Image module in the bottom right corner under Page Attributes. Click on Choose a Featured Image.
    * Then you can either upload the image from your computer or select the existing image from your media library and click on Set Featured Image. Click to view screenshot
    2. Then you need to go to “Appearance => Theme Options => Featured Slider” and in Slider Options, select Post Slider or Category Slider.
    3. If you choose “Post slider” then you need to go to “Appearance => Theme Options => Featured Slider => Featured Post Slider Options” and simply insert the ID numbers for Posts in the boxes, one Post ID number in each box. Click to view screenshot
    But if you choose “Category Slider”, then you need to go to “Appearance => Theme Options => Featured Slider => Featured Category Slider Options” and select the category.
    4. Click on Save Changes button

    But if you want Featured Image Slider where you want independent image slide then you need to upgrade to Pro version. See the Catch Kathmandu Pro version theme instructions at http://catchthemes.com/theme-instructions/catch-kathmandu-pro/

    in reply to: Changing the margin of the main content #27833
    Sakin
    Keymaster

    @leparaplui3: This them is build in 978 Grid system. So, your content is already on the left. Maybe you can play with the following css.

    /* For Main Layout Width */
    #main.layout-978 {
        width: 978px;
    }
    /* For content Layout Width */
    #content.col8 {
        width: 642px;
    }
    /* For sidebar Layout Width */
    #sidebar.col4 {
        width: 306px;
    }
    in reply to: Responsive Design is not working #27832
    Sakin
    Keymaster

    @Paul: I check in your site and it’s not working in all mobile devices and it’s same like in the screenshot you have provided. When I check in details, I found that the your mobile settings in controlled from WiziApp. Check you plugins and deactivate it.

    in reply to: How to stop Catch Kathmandu Pro from "call home" #27831
    Sakin
    Keymaster

    @Alex: Maybe that’s the Theme Updater. It will try to check in for Theme Update. You can upload screenshot in your site or any screenshot site and paste in the image URL here.

    in reply to: White space above post #27818
    Sakin
    Keymaster

    @Jonathan: Sorry, replace the previous css with the following.

    .hentry, .no-results, #author-info, #disqus_thread, #content .error404 {
        padding-top: 0;
    }
    in reply to: Simple Catch – removing specific image border #27816
    Sakin
    Keymaster

    @ihortizuela: If you want to remove it for all you need to add the following css in “Appearance => Theme Options => Csutom CSS” box.
    #main #content img { border: none; }

    in reply to: Display Category on Page #27815
    Sakin
    Keymaster

    @Jonathan: Then you can add the following css.
    .category .page-header .page-title { display: none; }

    in reply to: Display category besides date insted of author #27772
    Sakin
    Keymaster

    @GiovannaChine: That will be like repeat as you can see in the page http://catchthemes.com/demo/simplecatch/uncategorized/beautiful-view-from-namobuddha/, you have categories below the post. But if you want to add it just below the header like you have mentioned. Then you need to create child theme. Then create functions.php in your child theme and add the following code.

    <?php
    /**
     * Display the page/post loop part
     * @since Simple Catch Pro 1.3.2
     */
    function simplecatch_loop() {
    
    	if ( is_page() ): ?>
        
    		<section <?php post_class(); ?> >
            	<header class="entry-header">
    				<h1 class="entry-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php echo esc_attr( get_the_title() ); ?>"><?php the_title(); ?></a></h1>
                </header>
                <div class="entry-content clearfix">
    				<?php the_content(); 
                    // copy this <!--nextpage--> and paste at the post content where you want to break the page
                     wp_link_pages(array( 
                            'before'			=> '<div class="pagination">Pages: ',
                            'after' 			=> '</div>',
                            'link_before' 		=> '<span>',
                            'link_after'       	=> '</span>',
                            'pagelink' 			=> '%',
                            'echo' 				=> 1 
                    ) ); ?>
               	</div>   
    		</section><!-- .post -->
            
        <?php elseif ( is_single() ): ?>
        
    		<section <?php post_class(); ?>>
            	<header class="entry-header">
                    <h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php echo esc_attr( get_the_title() ); ?>"><?php the_title(); ?></a></h1>
                    <div class="entry-meta">
                        <ul class="clearfix">
                            <li class="no-padding-left author vcard"><a class="url fn n" href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>" title="<?php echo esc_attr(get_the_author_meta( 'display_name' ) ); ?>" rel="author"><?php _e( 'By', 'simplecatch' ); ?>&nbsp;<?php the_author_meta( 'display_name' );?></a></li>
                            <li class="entry-date updated"><?php $simplecatch_date_format = get_option( 'date_format' ); the_time( $simplecatch_date_format ); ?></li>
                            <li class="tags"><?php _e( 'Categories: ', 'simplecatch' ); ?> <?php the_category(', '); ?> </li>
                            <li><?php comments_popup_link( __( 'No Comments', 'simplecatch' ), __( '1 Comment', 'simplecatch' ), __( '% Comments', 'simplecatch' ) ); ?></li>
                        </ul>
                    </div>
               	</header>
                <div class="entry-content clearfix">
    				<?php the_content();
                    // copy this <!--nextpage--> and paste at the post content where you want to break the page
                     wp_link_pages(array( 
                            'before'			=> '<div class="pagination">Pages: ',
                            'after' 			=> '</div>',
                            'link_before' 		=> '<span>',
                            'link_after'       	=> '</span>',
                            'pagelink' 			=> '%',
                            'echo' 				=> 1 
                        ) );
                    ?>
    			</div>
                <footer class="entry-meta">
                	<?php 
                    $tag = get_the_tags();
                    if (! $tag ) { ?>
                        <div class='tags'><?php _e( 'Categories: ', 'simplecatch' ); ?> <?php the_category(', '); ?> </div>
                    <?php } else { 
                       	the_tags( '<div class="tags"> ' . __('Tags', 'simplecatch') . ': ', ', ', '</div>'); 
                    } ?>
               	</footer>
    		</section> <!-- .post -->
                
    	<?php endif;
    } // simplecatch_loop
    in reply to: Remove border/shadow fron featured content? #27770
    Sakin
    Keymaster

    @pNICBsa4: Just add the following css in “Appearance => Theme Options => Custom CSS” box.
    #featured-post img, #main-slider img { box-shadow: none; }

    in reply to: How to stop Catch Kathmandu Pro from "call home" #27769
    Sakin
    Keymaster

    @Alex: I don’t know which one you are talking about. Can you post in your site URL? If you are talking about the footer credit. Then you can remove that from “Appearance => Theme Options => Footer Editor Options”.

    in reply to: Display Category on Page #27768
    Sakin
    Keymaster

    @Jonathan: You can add description to your category from “Posts => Categories” in your WordPress Dashboard and that will be added just below your category title. But I see you have css in your child theme style.css that is hiding the category title, you need to remove the following css.
    .category .page-header { display: none; }

    in reply to: Footer Widgets Wonky #27720
    Sakin
    Keymaster

    @Karin: I just check in your site and you are not using our theme. You need to ask in Theme Authors support forum.

    in reply to: Menu doesn't work on Nexus 5 and on Iphone #27719
    Sakin
    Keymaster

    @Dirk: Can you check your settings at “Appearance => Theme Options => Responsive Design”. I see that you are using Secondary menu for this you need to check ”
    Enable Secondary & Footer Menu in Mobile Devices” and save change.

    in reply to: Changing footer color #27718
    Sakin
    Keymaster

    @Dirk: Go to “Appearance => Theme Options => Color Options => Site Color Options”. Then you can change “Footer Background Color” for the footer copyright information box and “Footer Background Sidebar Color” for footer sidebar area where you have social icons.

    in reply to: adsense responsive ad #27717
    Sakin
    Keymaster

    @Ralph177: I see that you have already added Ads in your Header Right Sidebar. So, I think you solved it. The only problem I see is the Header right and Header Left margin. You have kept as 10% which is huge. Just go with smaller numbers like 3%, 2%…

    in reply to: Adding "Latest posts" to static homepage #27715
    Sakin
    Keymaster

    @Onyinye: Sorry your question is bit confusing. By default your homepage will show the latest post. But if you want to change that to other. Then you need to go to “Settings => Reading” and change the “Front page displays” settings. For example, if you want static page as homepage, then check “A static page (select below)” and choose page in “Front page” select box and then for your post page you can choose “Posts page” and this page will show all your posts.

    in reply to: How to change header size #27714
    Sakin
    Keymaster

    @Onyinye: I see that you are using Custom Header from “Appearance => Header” instead of Log from “Appearance => Theme Options => Header Options” and just add your image in logo. But if you want to keep the custom header as it is then you need to hide the header content which is talking space. So, for that just add the following css in “Appearance => Theme Options => Custom CSS” box.
    #header-content { display: none; }

    in reply to: Display category besides date insted of author #27663
    Sakin
    Keymaster

    @GiovannaChine: Post categories is shown in the simple post like this http://catchthemes.com/demo/simplecatch/uncategorized/beautiful-view-from-namobuddha/

    Sorry I don’t get it what you mean. Maybe you can share your site URL and explain in reference to your site.

    in reply to: White space above post #27661
    Sakin
    Keymaster

    @Jonathan: You can add the following css in “Appearance => Theme Options => Custom CSS” box to decrease the padding top

    .hentry, .no-results, #author-info, #disqus_thread, #content .error404 {
        padding-top: 15px;
    }

    You can add the following css in “Appearance => Theme Options => Custom CSS” box to remove the hyphenation

    #content article {
    	word-wrap: normal;
    	-webkit-hyphens: none;
    	-moz-hyphens: none;
    	hyphens: none;	
    }
Viewing 20 posts - 7,841 through 7,860 (of 14,509 total)