Forum Replies Created

Viewing 20 posts - 7,841 through 7,860 (of 14,504 total)
  • Author
    Posts
  • 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;	
    }
    in reply to: Display Category on Page #27656
    Sakin
    Keymaster

    @Jonathan: Sorry I don’t get it why you need page to display the category. You can use the Category itself and add category in menu.

    I have already given you the css. You need to change the padding and margin in those css and then add in.

    in reply to: Changing 'category' in widget and archives #27574
    Sakin
    Keymaster

    @pennsavage: Just go to “Appearance => Widgets” and in “Footer Area Two” where you have added in the Categories widget. Just click on it and add in Title: as topics

    in reply to: "Posted on by" getting rid of the 'on' #27573
    Sakin
    Keymaster

    @pennsavage: We cannot delete just on from custom css box. But we can hide whole text Posted on by add in the following css in “Appearance => Theme Options => Custom CSS” box.
    .entry-header .entry-meta span:first-child { display: none; }

    The only way to delete just on and date will be by building child theme. If you build child theme then you can remove the above css and the css you have added.
    1. Create functions.php file in your child theme and then copy function catchevolution_posted_on from catchevolution-functions.php file to your child theme functions.php file and edit it. So, the code in your child theme functions.php file will be as following

    <?php
    /**
     * Prints HTML with meta information for the current post-date/time and author.
     * Create your own catchevolution_posted_on to override in a child theme
     *
     * @since Catch Evolution 1.0
     */
    function catchevolution_posted_on() {
    	printf( __( '<span class="sep">Posted </span><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', 'catchevolution' ),
    		esc_url( get_permalink() ),
    		esc_attr( get_the_time() ),
    		esc_attr( get_the_date( 'c' ) ),
    		esc_html( get_the_date() ),
    		esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
    		esc_attr( sprintf( __( 'View all posts by %s', 'catchevolution' ), get_the_author() ) ),
    		get_the_author()
    	);
    }

    2. Create child theme style.css as https://gist.github.com/catchthemes/11313660#file-style-css

    in reply to: home page/ remove nothing found archive #27571
    Sakin
    Keymaster

    @peithoemporium: If you don’t want post then what you want to add in. You can add in your welcome page instead. For that just create page, for example “Welcome to http://www.peithoemporium.com&#8221; and then add the text in that page and publish it. Then you can show that page in homepage from “Appearance => Readings” and select “A static page (select below)” and choose page in “Front page” and save change

    in reply to: Social icons display blank on hover #27570
    Sakin
    Keymaster

    @tlrome: Looks like you have added custom css from Jetpack Plugin in “Appearance => Edit CSS”, where you have to delete the background none in the following css
    .widget ul > li a:hover,a:focus,a:active{color:#1982d1;background:none;text-decoration:underline;font-style:italic}

    Note: Also I see that you have change the width of the columns and this is effecting responsive design. When you change the width of the column you either need to disable the responsive design or you need to change the widget in various responsive devices width.

Viewing 20 posts - 7,841 through 7,860 (of 14,504 total)