Forum Replies Created

Viewing 20 posts - 1,521 through 1,540 (of 14,510 total)
  • Author
    Posts
  • in reply to: Show Featured Image on Post Page #80560
    Sakin
    Keymaster

    @pyrogopher: Sorry I don’t get it what you mean. Can you explain in reference with your site URL.

    All dynamic image that we generate in theme if from Featured Image. So, first make sure you have added in featured image in you post. For featured image, refer to http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-wordpress-postpage/

    After that you image will be control through settings. For example, if want to display that featured image in archive/blog pages then you need to go to “Appearance => Theme Options => Layout Options” and then select “Excerpt/Blog Display” in Content Layout options.

    Yes, and then if you want to customize any particular post in coding then you need to build child theme like the above solution given by wensolution.

    Thanks

    in reply to: Remove Featured Slider for mobile view? #80559
    Sakin
    Keymaster

    @wensolutions: Thanks wensolutions for the custom css

    @jwyrem
    : post in your site URL when you are asking questions so that we can provide your better support with custom css focused to your site.

    in reply to: Change Main Nav Bar Color #80556
    Sakin
    Keymaster

    It’s not changing as you have manually added in grey in your child theme css. Remove the following css and it will be white

    #header-menu .menu-header-container {
        background-color: #e9e7e7;
    }

    Your sub-menus, background colors are in white

    in reply to: Header Images are cut #80548
    Sakin
    Keymaster

    @ttolun: I just check in your site in Chrome and it’s working fine. See this screenshot https://www.dropbox.com/s/72uyou2xdxperd2/Screen%20Shot%202015-12-02%20at%206.46.55%20PM.png?dl=0. Also I check in with Safari, Firefox and IE10 and 11.

    Did you refresh your browser and check in? Sometimes it might be cache issue.

    in reply to: Hide author but not tags #80546
    Sakin
    Keymaster

    @truewp: If you don’t want to hide and totally remove it from code level then you need to build child theme. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and edit the code. I see that you are using Simple Catch theme so, you need to copy content.php in file in your child theme and remove the following code:

    <ul class="post-by">
        <li class="no-padding-left"><a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>" title="<?php echo esc_attr(get_the_author_meta( 'display_name' ) ); ?>"><?php _e( 'By', 'simple-catch' ); ?>&nbsp;<?php the_author_meta( 'display_name' );?></a></li>
        <li><?php $simplecatch_date_format = get_option( 'date_format' ); the_time( $simplecatch_date_format ); ?></li>
        <li class="last"><?php comments_popup_link( __( 'No Comments', 'simple-catch' ), __( '1 Comment', 'simple-catch' ), __( '% Comments', 'simple-catch' ) ); ?></li>
    </ul>

    Note: this code in only for Simple Catch Theme. From next time, please post in proper theme forum. This is Adventurous Theme forum.

    in reply to: How to enable jetpack infinite scroll? #80462
    Sakin
    Keymaster

    @pierangelopirro: Looks like there is issue in Infinite Scroll in your site. So, can you go to “Jetpack => Settings” and then deactivate “Infinite Scroll” and check in.

    in reply to: Top header sidebar: sticky? #80461
    Sakin
    Keymaster

    Hello Andy,

    This looks little difficult and might not work. So, recommend you to hire a customizer. Try adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    #header-top {
        background-color: #fff;
        display: block;
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 100;
    }
    #masthead.fixed-header {
        box-shadow: none;
        top: 30px;
    }

    Regards,
    Sakin

    in reply to: Header Images are cut #80458
    Sakin
    Keymaster

    @ttolun: That is part of the design. That menu is be floting above the the header image and slider. See the demo http://catchthemes.com/demo/full-frame/.

    But if you don’t like that then you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    #feature-slider, #header-featured-image { margin-top: 0; }

    in reply to: Image margins in page content #80371
    Sakin
    Keymaster

    @aj2: Yes, please post in your site URL so that we can check in detail.
    For now, you can replace your css with the following css. You can add css in “Appearance => Theme Options => Custom CSS” box:
    img.aligncenter, img.alignleft, img.alignright { margin: 13px; }

    in reply to: is this theme good for seo? #80370
    Sakin
    Keymaster

    @agenciabrushup: Also you can boost your SEO by installing Yoast SEO plugin.

    in reply to: Non-Responsive #80322
    Sakin
    Keymaster

    @eridandie: I cannot view source your site and also when I check in your site. It shows disable responsive design.

    in reply to: Replace Featured Slider with embeded video #80269
    Sakin
    Keymaster

    @ncmh-cardiff: Yes, it depends on what you want to do it. Please post in your site URL and all the details of what you want to do in Catch Everest Pro support forum at http://catchthemes.com/support-forum/forum/catch-everest-pro-premium/

    in reply to: 2.6.1 Header Image #80268
    Sakin
    Keymaster

    @ArcticCascade: Can you post in your site URL and then I can check in.

    in reply to: Redirect of homepage broke search function #80264
    Sakin
    Keymaster

    @ttiwia: This is your database issue not WordPress issue. So, when you change link you need to change it from Database as well. trying using Search and replace plugin.

    in reply to: New menu line after upgrade #80258
    Sakin
    Keymaster

    @Eduardo: There is new version update “Catch Box Pro 4.3.2” which fixed this issue. Check out change log at http://catchthemes.com/changelogs/catch-box-pro-theme/

    in reply to: Logo and site title lined up #80238
    Sakin
    Keymaster

    @Susie: That’s not possible with custom css. So, I suggest you to add those text in the image itself and just add logo and disable site title and tagline.

    Or you can float logo and title both to the left. For this, you can just add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #site-logo,
    .logo-left #site-header {
        display: inline;
        float: left;
        width: auto;
    }
    in reply to: New menu line after upgrade #80237
    Sakin
    Keymaster

    @Pratik: Thanks for the css. We will fix this in new version update.

    @Eduardo
    : Thanks for reporting the issue.

    in reply to: function.php error #80236
    Sakin
    Keymaster

    @Pratik: Thanks for your reply.

    in reply to: Preview looks great, reality includes removed demo content #80231
    Sakin
    Keymaster

    @perryhouseplans: Thanks a lot for your positive review. Cheers 🙂

    in reply to: Change Header Background #80208
    Sakin
    Keymaster

    @tosgood: Great thanks a lot. Cheers 🙂

Viewing 20 posts - 1,521 through 1,540 (of 14,510 total)