Forum Replies Created

Viewing 20 posts - 4,561 through 4,580 (of 4,888 total)
  • Author
    Posts
  • in reply to: CSS #84035
    Mahesh
    Member

    Hi @Anton,

    Please post in your site url. And please specify where is the site you want it.

    Regards,
    Mahesh

    in reply to: feathured Image pop up #84034
    Mahesh
    Member

    Hi @Shana Shanti,

    Thank you for appreciation.

    In Catch Evolution Free version, there is no such feature like to display post/page’s featured image as header image. How did you managed to display post’s featured image as header image in post pages?

    Regards,
    Mahesh

    Mahesh
    Member

    Hi @fishingguy,

    For new question please create a new thread because it’ll be easier to find/search the thread. And if someone search for the same problem he/she may find the thread for the solution.

    For your problem you can create a gallery and insert it into the post/page content. You can find more details in the following link.
    https://codex.wordpress.org/The_WordPress_Gallery

    Regards,
    Mahesh

    in reply to: Show JUST post date, NOT also edited date? #84025
    Mahesh
    Member

    Hi @americaontwowheels,

    Have you made any changes to the core CSS files? Edited date is not displaying in our server. You are using Catch Base Pro 3.1, latest version availabe is Catch Base Pro 3.2. Please update your theme. Let me know if the problem persists.

    Regards,
    Mahesh

    in reply to: Need help with slider images on Home page #84024
    Mahesh
    Member

    Hi @Loudmind,

    For the removing space below slider, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    #feature-slider{
        padding-bottom: 0;
    }

    And for the space between the text and footer, it is because of the empty widget in the footer area. Please go to “Dashboard=> Appearance=> Widgets” And remove the empty Text widget from Footer Area 1.

    Regards,
    Mahesh

    in reply to: Full width? #84022
    Mahesh
    Member

    Hi @kerrigo,

    Sorry, this feature was missing in Create Free. Thank you for letting us know. This will be fixed in the next update which will be released soon.

    Regards,
    Mahesh

    in reply to: Hide latest posts from front page #84021
    Mahesh
    Member

    Hi @Carina,

    1. You haven’t activated the child theme. Go to “Dashboard=> Appearance=> Themes” and activate Catch Responsive Child theme.

    2. It seem you’re using static front page. Go to “Dashboard=> Appearance=> Customize=> Static Front Page” and select Your Latest Post from Front Page Displays option and click save.

    3. Please replace the above CSS with the following. The background-color should only contain hex value. It will fix the footer color.

    #site-generator {
        background-color: #000;
        color: #fff;
    }

    Let me know if this helps.

    Regards,
    Mahesh

    in reply to: Inline gallery display only one column #83974
    Mahesh
    Member

    Hi @Petr Sabata,

    This is a bug and will be fixed in the next update. For now please go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS.

    #content .gallery-item {
        display: inline-block;
        margin: 0;
    }

    Regards,
    Mahesh

    in reply to: String "Continue reading" is not translated #83972
    Mahesh
    Member

    Hi @jie66,

    Sorry, there were still some bug in some files. Just fixed now. Please wait for next update 4.2.2. Sorry for the inconvenience.
    Thank you for letting us know and fix the bug.

    Regards,
    Mahesh

    in reply to: Inline gallery display only one column #83957
    Mahesh
    Member

    Hi @Petr Sabata,

    Please post in your site url.

    Regards,
    Mahesh

    in reply to: Cannot install Simple Catch Pro version 3.3 #83946
    Mahesh
    Member

    Hi @rflores,

    Have you replaced the codes in your functions.php with the codes I’ve given above? The code is working fine in our server. Can you please share your functions.php code?

    Regards,
    Mahesh

    in reply to: Control width of columns in Featured Content #83944
    Mahesh
    Member

    Hi @huskser,

    For the above, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    .featured-content-image{
        text-align: center;
    }
      
    #featured-content.layout-three .hentry{
        width: 25%;
    }
      
    #featured-content.layout-three .hentry:nth-child(3n+2){
        width: 50%;
    }

    Regards,
    Mahesh

    in reply to: Full width? #83938
    Mahesh
    Member

    Hi @kerrigo,

    Could you clarify your problem more. By full-width page do you mean removing sidebar and display content to full-width ( This feature is only available in Create Pro version )? Or do you mean to make your site full-width instead of fixed-layout?
    Please post in your site url.

    Regards,
    Mahesh

    in reply to: ChatX Plugin Conflict #83933
    Mahesh
    Member

    Hi @Josh

    The issue may be because ChatX and Catch Everest Pro use same jquery library. Or the way that ChatX has enqueued those libraries. Please contact the ChatX support for the issue. And we do not have access to ChatX plugin so that we can check it.

    Regards,
    Mahesh

    in reply to: Change copyright title #83930
    Mahesh
    Member

    Hi @andrewf90,

    This feature is only available in Catch Flames Pro version, so I recommend you to upgrade to Pro. In Catch Flames Free version, by default copyright displays the site title, therefore you have to change you site title instead.
    Or you can customize it with a child theme.

    Regards,
    Mahesh

    in reply to: Need help with slider images on Home page #83929
    Mahesh
    Member

    Hi @Loudmind,

    Thank you for using Catch Responsive Pro.

    Just checked your site and seems you have managed it to change the homepage to static front page. Now only the content of the page is being displayed.

    Let me know if you are still having issues.

    Regards,
    Mahesh

    in reply to: Show JUST post date, NOT also edited date? #83928
    Mahesh
    Member

    Hi @americaontwowheels,

    Where actually are you seeing this? Only published date are displaying in our server. Please post in your site url.

    Regards,
    Mahesh

    Mahesh
    Member

    Hi @americaontwowheels,

    For this you have to create child theme. For more details on creating child theme, visit this LINK. Then in child theme create a file and name it index.php and add the following codes in it and save.

    <?php
    /**
     * The main template file.
     *
     * This is the most generic template file in a WordPress theme
     * and one of the two required files for a theme (the other being style.css).
     * It is used to display a page when nothing more specific matches a query.
     * E.g., it puts together the home page when no home.php file exists.
     *
     * @package Catch Themes
     * @subpackage Catch Base Pro
     * @since Catch Base 1.0
     */
    
    get_header(); ?>
    
    	<main id="main" class="site-main" role="main">
    
    		<?php if ( have_posts() ) : ?>
    
    			<?php /* Start the Loop */ ?>
    			<?php while ( have_posts() ) : the_post(); ?>
    
    				<?php
    					/* Include the Post-Format-specific template for the content.
    					 * If you want to override this in a child theme then include a file
    					 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
    					 */
    					get_template_part( 'content', get_post_format() );
    				?>
    
    			<?php
    				$withcomments = 1; // force comments form and comments to show on front page
    				comments_template();
    			?>
    
    			<?php endwhile; ?>
    
    			<?php catchbase_content_nav( 'nav-below' ); ?>
    
    		<?php else : ?>
    
    			<?php get_template_part( 'no-results', 'index' ); ?>
    
    		<?php endif; ?>
    	</main><!-- #main -->
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    This will display comments section in your home page.

    Regards,
    Mahesh

    in reply to: Modify font size of image captions? #83925
    Mahesh
    Member

    Hi @americaontwowheels,

    You do not have to touch the theme’s code for this. It can be done with Custom CSS. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    .wp-caption-text {
        font-size: 12px;
    }

    Regards,
    Mahesh

    in reply to: Search Button Missing After 4.2 #83923
    Mahesh
    Member

    Hi @rcstani,

    Please post in your site url.

    Regards,
    Mahesh

Viewing 20 posts - 4,561 through 4,580 (of 4,888 total)