Forum Replies Created

Viewing 20 posts - 3,061 through 3,080 (of 4,908 total)
  • Author
    Posts
  • in reply to: Edit default 'subtitle' in blog post #97046
    Mahesh
    Participant

    @janolof: Thank you for your appreciation. Sorry for the trouble. Glad it worked for you.

    Regards,
    Mahesh

    in reply to: Edit default 'subtitle' in blog post #97043
    Mahesh
    Participant

    @janolof: Sorry, it should be comments not comment, was a Typo. For just modifying Custom CSS, you do not need to create child theme.

    #comments .comments-title {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Move page title above featured image #97041
    Mahesh
    Participant

    @friarpaul:
    Hi Paul,

    For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme create content-page.php file and add the following codes:

    <?php
    /**
     * The template used for displaying page content in page.php
     *
     * @package Catch Themes
     * @subpackage Catch Base Pro
     * @since Catch Base 1.0
     */
    ?>
    
    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    
    	<div class="entry-container">
    		<header class="entry-header">
    			<h1 class="entry-title"><?php the_title(); ?></h1>
    		</header><!-- .entry-header -->
    		<?php
    		/**
    		 * catchbase_before_page_container hook
    		 *
    		 * @hooked catchbase_single_content_image - 10
    		 */
    		do_action( 'catchbase_before_page_container' ); ?>
    		<div class="entry-content">
    			<?php the_content(); ?>
    			<?php
    				wp_link_pages( array(
    					'before' => '<div class="page-links"><span class="pages">' . __( 'Pages:', 'catch-base-pro' ) . '</span>',
    					'after'  => '</div>',
    					'link_before' 	=> '<span>',
                        'link_after'   	=> '</span>',
    				) );
    			?>
    		</div><!-- .entry-content -->
    		<?php edit_post_link( __( 'Edit', 'catch-base-pro' ), '<footer class="entry-footer"><span class="edit-link">', '</span></footer>' ); ?>
    	</div><!-- .entry-container -->
    </article><!-- #post-## -->

    Regards,
    Mahesh

    in reply to: How to add font size changes to the toolbar #97040
    Mahesh
    Participant

    @onnalomd: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #main .entry-content {
        font-size: 14px;
        font-family: "Droid Serif";
    }

    Note:
    1. Please adjust the font size as desired.
    2. Please use your desired serif font.

    Regards,
    Mahesh

    in reply to: Promotion headline add HTML form code #97039
    Mahesh
    Participant

    @advisecincinnati:
    Hi Brain:

    The Promotion Headline is just for text and link purpose only. If you want to put form or other elements apart from plain text, you’ll need to further customize. I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: accentuation #97038
    Mahesh
    Participant

    @macorsini: Please post in your site url.

    Regards,
    Mahesh

    in reply to: "Save and Pubish" doesn't work #97037
    Mahesh
    Participant

    @josefkuhnt:
    Hi Josef, I checked for the issue in our server and all worked just fine. Are you any plugins? If yes, please try disabling it and check if it resolves the issue. Let me know if the problem persist, we’ll contact you through email.

    Regards,
    Mahesh

    in reply to: Edit default 'subtitle' in blog post #97036
    Mahesh
    Participant

    @janolof: This is WordPress by default functionality. That displays about number of comments for the blog. If you simply want to hide it, it can be done with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #comments .comments-title {
        display: none;
    }

    But if you want to get rid of it, you’ll need to create a child theme. You can find more about creating child theme HERE. Then override comments.php file.

    Regards,
    Mahesh

    in reply to: Problems adding links to other web pages #97035
    Mahesh
    Participant

    @helpme: Please try disabling plugins if you are using any and check again. If that didn’t help either then there is some issue in your WordPress Core. Please try reinstalling the fresh copy of WordPress and try again.

    Regards,
    Mahesh

    in reply to: Sidebar Widget Padding #97034
    Mahesh
    Participant

    @scoop: Please use the following CSS instead. I tested this one on your site.

    #secondary .widget {
        margin-bottom: 15px;
        padding: 10px 30px;
    }

    Regards,
    Mahesh

    in reply to: Updating Catch Responsive Pro #97033
    Mahesh
    Participant

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

    Regards,
    Mahesh

    in reply to: Sidebar spacing of widgets and header image movement #97032
    Mahesh
    Participant

    @scoop: For moving the image to the left, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #header-featured-image {
        margin: 0 auto;
        max-width: 1160px;
    }
    
    #header-featured-image img {
        margin: 0;
    }

    Regards,
    Mahesh

    in reply to: Remove sidebar from category posts page #97031
    Mahesh
    Participant

    @janetwad:
    Hi Janet,

    Thank you for your appreciation. If you like my support and Catch Everest theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-everest?rate=5#postform.
    Have a nice day.

    Regards,
    Mahesh

    in reply to: Remove the date #97006
    Mahesh
    Participant

    @hedibelkhodja:
    Hi Belkhodja,

    This can be done with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #main .entry-header .posted-on {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Make "featured content" Categories rather than pages #97005
    Mahesh
    Participant

    @maxxbogner1988: This option is already available in Full Frame Pro. Go to Dashboard=> Appearance=> Customize=> Featured Content=> Featured Content Options and select Featured Category Content in Select Content Type. Then scroll down and select the desired category/categories you want to display in as Featured Content. Then click Save & Publish.

    I don’t understand this one:
    Or another option would be to be able to have my posts go to multiple pages.

    Let me know further.

    Regards,
    Mahesh

    in reply to: Size of header image #97004
    Mahesh
    Participant

    @compyfox: Okay, I just checked you site and I found the problem, you are having. The image is still 1680×720. The theme uses header image as background image and has some padding given to it. Plus the content within the Header Image options (Title, Content and Button) affects the height of the Featured Header and so as the Header Image itself. The problem in your case is, you have removed the content so the content height is zero. And only padding is there. That is why the div’s height is small and the image seemed to be cropped.
    As you put the content in the Header Image, it will seem exactly as the demo.
    Hope this helps. Let me know further.

    Regards,
    Mahesh

    in reply to: Problems adding links to other web pages #97003
    Mahesh
    Participant

    @helpme: Yes you can switch back to this theme again anytime. It won’t affect pages layout. Just switch the theme and do a quick check on the issue exist on the other theme too. Then you can switch back to the current theme again.

    Regards,
    Mahesh

    in reply to: Remove sidebar from category posts page #97002
    Mahesh
    Participant

    @janetwad: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .archive.category-latest-news #primary {
        width: 100%;
    }
    
    .archive.category-latest-news #secondary {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Sidebar spacing of widgets and header image movement #96985
    Mahesh
    Participant

    @scoop: I’ve answered this one in the other thread. https://catchthemes.com/support-forum/topic/sidebar-widget-padding/#post-96979
    Please do not post same thing twice.
    Please post in your site url so I could help you further.

    Regards,
    Mahesh

    in reply to: stop scrolling on header and main nav #96984
    Mahesh
    Participant

    @hidemyage: Go to Dashbaord=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    @media screen and (min-width: 941px) {
        #branding {
            position: fixed;
            z-index: 10;
            margin: 0 auto;
            left: 0;
            right: 0;
        }
    
        #header-menu {
    	position: fixed;
    	z-index: 5;
            margin: 0 auto;
            left: 0;
            right: 0;
        }
        #main-wrapper {
            margin-top: 57px;
        }
    }

    Regards,
    Mahesh

Viewing 20 posts - 3,061 through 3,080 (of 4,908 total)