Forum Replies Created

Viewing 20 posts - 3,141 through 3,160 (of 14,509 total)
  • Author
    Posts
  • in reply to: Featured content image size #60612
    Sakin
    Keymaster

    @Jonathan: Sorry I don’t get it which section are you talking about. Can you explain in reference with your site URL so that I can check in.

    Note: each theme has it’s own image sizes and design. So, we recommend to user “Regenerate Thumbnail” plugin and regenerate thumbnail after changing theme.

    in reply to: sidebar width for posts and pages #60611
    Sakin
    Keymaster

    @cindy: There is no option for this. So, you need to send me your development or live version site URL and then let me know the width that you want to change to and then I can check for custom css. It’s not recommended to change the width as it’s responsive design and the width changes as per the screensize.

    in reply to: feature image in posts #60610
    Sakin
    Keymaster

    @cindy: Which Featured Image are you talking about to disable in Page/post
    1. If you are talking about featured image just above the page/post, then you can enable/disable that from “Appearance => Customize => Theme Options => Layout Options => Single Page/Post Image Layout”
    2. If you are talking about Featured image in the header, above menu and then only hide in page/post then you need to edit those page and post and below you post/page editor, you will see “Catchresponsive Options” box, where you need to click on “Header Featured Image Options” and then disable it.

    in reply to: spacing between photos #60609
    Sakin
    Keymaster

    @cindy: Please post in your site URL and let me know which images are you talking about. Then I can check in spaces.

    in reply to: Facebook widget from Jetpack #60608
    Sakin
    Keymaster

    @BobS: This is not from our Theme. It’s new changes from Facebook itself. So, How did you add that from. If you have added from plugin then you need to contact plugin author for that. You can see the changes from Facebook developer tools https://developers.facebook.com/docs/plugins/page-plugin

    in reply to: Search results page #60602
    Sakin
    Keymaster

    @effess:
    1. If you just want to remove border and change the font then you can change the font in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    /* For Border and Text Color */
    .page-header {
        border: none;
        color: #757575;
    }
    /* For Font in Search Page */
    #primary .page-header .page-title {
        font-family: "Open Sans",sans-serif;
    }

    2. For Breadcrumb, we recommend “Breadcrumb NavXT” plugin, which we have used in our demo page http://catchthemes.com/demo/catch-kathmandu/

    Sakin
    Keymaster

    @zonas: That is managed from “Archive Content Layout”. Just go to “Appearance => Theme Options => Layout Options” and then select “Full Content Display” in “Archive Content Layout” and save changes.

    in reply to: Post pages URL not editable #60595
    Sakin
    Keymaster

    @stevecull: Yes, you got it.

    in reply to: different header image on blogs #60594
    Sakin
    Keymaster

    @roche5000: Sorry there is no option. You can add header image from “Appearance => Header”. This will add same header image in entire site. But the if you want to show difference header image in particular page, then you need to build child theme. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then copy function simplecatch_custom_header_image() to you child theme functions.php file and edit as per your need.

    in reply to: slider in header #60593
    Sakin
    Keymaster

    @karinvlietstra: For that you need to build child theme and change the hook.

    in reply to: Featured Content & Footer Area Display #60591
    Sakin
    Keymaster

    @Laurie: I just check in your site and don’t see any issue in Firefox. Also we haven’t change anything in footer and featured content. You might want to clear your cache, refresh your browser and check in. I check your site in all FF, Chrome, IE and Safari and it’s fine.

    in reply to: Center Slider #60590
    Sakin
    Keymaster

    @Kim: I don’t see any slider in your both live and staging server. Can you add it and let me know it.

    in reply to: Page Layout won't change #60589
    Sakin
    Keymaster

    @beatmaniaNZ: Sorry, I cannot do anything about this. You can start now.

    in reply to: How To Add Breadcrumbs #60588
    Sakin
    Keymaster

    @svoelker: You can install “Breadcrumb NavXT” plugin to add Breadcrumb.

    in reply to: Widget panel (backend) #60587
    Sakin
    Keymaster

    @Michaela: It’s depend on the widget you have added in and also the title you have given in the widget. For example: if you add “Recent Posts” widget to your site sidebar. Then it will show you option to Add in Title. If you add that title then it will show your widget as “Recent Posts: Your Title name” otherwise it will just show as “Recent Posts”.

    in reply to: Putting Promotion headline below Featured Content #60534
    Sakin
    Keymaster

    @Alison: Ok for that
    1. Go to “Appearance => Theme Options => Promotion Headline Options => Promotion Position” and select “After Featured Content”.

    Then you will see
    i. Header Image
    ii. Featured Content
    iii. Promotion Headline

    But you want
    i. Featured Content
    ii. Promotion Headline
    iii. Header Image

    2. For that you need to build child theme. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/.

    Then add the following code in your child theme functions.php file.

    // Unhook default Adventurous functions
    function unhook_adventurous_functions() {
        remove_action( 'adventurous_before', 'adventurous_featured_image_display', 10 ); 
    }
    add_action( 'init', 'unhook_adventurous_functions' );
    
    //Adding Featured Image  after promotion headline
    add_action( 'adventurous_before_main', 'adventurous_featured_overall_image', 101 );
    in reply to: Page Layout won't change #60532
    Sakin
    Keymaster

    @beatmaniaNZ: Page layout will not work as BBPRESS has it’s own template which control it. See this for bbpress templates https://codex.bbpress.org/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/

    Copy those file form BBPress template to your child theme and then remove <?php get_sidebar(); ?>

    in reply to: Header Image Full Width #60531
    Sakin
    Keymaster

    @Kevin: Looks like you are viewing your site from very large screen. It’s not good to upload very large image as it hamper site loading. That is why we recommend maximum image size that most of the user browse web. Maybe you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #header-featured-image img {
        width: 100%;
    }
    in reply to: Center Post Image #60530
    Sakin
    Keymaster

    @Kevin: Sorry I don’t get it that you mean. Maybe you can create screenshot and upload it in your site or any photo sharing site then add in your screenshot url here.

    in reply to: image size #60529
    Sakin
    Keymaster

    @toni: For full slider, go to “Appearance => Theme Options => Featured Slider => Slider Options => Slider Layout” and select “Full Width Slider”

Viewing 20 posts - 3,141 through 3,160 (of 14,509 total)