Forum Replies Created

Viewing 20 posts - 2,701 through 2,720 (of 14,501 total)
  • Author
    Posts
  • in reply to: How can I change individual tab color #62839
    Sakin
    Keymaster

    @Dhuan: Can you tell me what do you mean by change the entire color. Can explain with your site url, which color are you trying to change?

    in reply to: Comment box background color and font? #62838
    Sakin
    Keymaster

    @Laszlo: Please post in your site URL so that I can check in.

    in reply to: Comment box background color and font? #62837
    Sakin
    Keymaster

    @SungJu: Theme has nothing to do with user registration. Go to “Settings => General” and make sure you have unchecked “Membership”. If this is not the case then check your plugin if you have open registration.

    in reply to: Problem updating #62828
    Sakin
    Keymaster

    @Cattext: Ok I will email you personally and check in your server.

    in reply to: Featured image dimensions… #62817
    Sakin
    Keymaster

    @Luchino: Each theme has it’s own design for images. If you don’t like auto featured image on the homepage/archive page then you can change the layout to To Show Full content. For that, just go to “Appearance => Theme Options => Layout Options => Archive Content Layout”. Then you can insert the image in your post as per your need and then split content using more tag <!--more-->. For more tag, check this http://devotepress.com/wordpress-writing-editing/how-to-split-content-using-the-more-tag-option/

    in reply to: Responsive menu sizing #62815
    Sakin
    Keymaster
    in reply to: Featured Content Font change #62814
    Sakin
    Keymaster

    @christiane: Thanks for your appreciation. If you like Adventurous theme and it’s support then please support it by providing your valuable review at https://wordpress.org/support/view/theme-reviews/adventurous?rate=5#postform

    in reply to: Problem updating #62813
    Sakin
    Keymaster

    @Cattext: Did you activate Catch Update plugin and then upload the zip file from “Appearance => Themes => Add New => Uploads”

    in reply to: Responsive menu sizing #62799
    Sakin
    Keymaster

    @Paul: Oh you have lot of items in menu. For your site, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (max-width: 1280px) {
        #access-top ul.menu a { padding: 12px; }
    }
    @media screen and (max-width: 1152px) {
        #access-top ul.menu a { font-size: 12px; }
    }
    @media screen and (max-width: 1100px) {
        #access-top ul.menu a { padding: 12px 9px; }
    }
    @media screen and (max-width: 1000px) {	
        #access-top { display: none; }
        .mobile-menu {
            display: inline-block;
            float: left;
            height: 46px;
            margin: 0;
            overflow: hidden;
            padding: 0;
            width: 46px;
        }
        .mobile-menu a { padding: 12px; }
    }
    in reply to: Featured image dimensions… #62791
    Sakin
    Keymaster

    @Luchino: For header cat image. You can go to “Appearance => Header => Add New Image” and upload original image, after that you will get crop option, there you can use your mouse and select from top to bottom of your image and click on “Crop Image”. So, you will get full height image for header image. See this screenshot https://www.pinterest.com/pin/548594798331307420/

    Then for your latest post in homepage/archive page, it take thumbnail of Width: 300px
    and Height: 169px which is in Ratio 16:9. So, when you upload your featured image, please use the ratio of 16:9. So, it will look good in all layout and it will not crop your image.

    in reply to: Get rid of image border in posts #62767
    Sakin
    Keymaster

    @akuster: You can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .featured-image img, 
    .entry-content img, 
    .comment-content img, 
    .widget img, 
    img.header-image, 
    .author-avatar img, 
    img.wp-post-image {
        box-shadow: none;
    }
    in reply to: Searches and Comments #62756
    Sakin
    Keymaster

    @Crown5:
    1. If you want to remove that search toggle from your menu, then there is option to remove that in Catch Responsive Pro theme which is not there in free theme. For free theme, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box to hide it.
    .nav-primary #search-toggle { display: none; }

    2. If you want to remove the search in Header Right Section, then there is “Header Right Sidebar” in Pro version, which you can remove or add widgets from “Appearance => Widgets”. For free theme, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box to hide it.
    #header-right-search { display: none; }

    3. In Pro version, you will get comment option in “Appearance => Customize => Theme Options => Comment Options” to hide comment as per your need. But in free theme, you need to off the comment using WordPress settings. If you want to completely turn off in new pages/post, then you need to go to “Settings => Discussion” and then uncheck Allow comments. See this screenshot https://www.pinterest.com/pin/548594798333127973/. But this will not remove for the old posts/pages. For that, you need to edit those page and posts. See this screenshot https://www.pinterest.com/pin/548594798333128024/

    Note: for more information about Catch Responsive Pro additional features, you can check out theme instructions page at http://catchthemes.com/theme-instructions/catch-responsive-pro/

    in reply to: Customize Search Results page #62752
    Sakin
    Keymaster

    To change title from h1 to h3, you need to replace the following code
    <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'catchkathmandu' ), '<span>' . get_search_query() . '</span>' ); ?></h1>

    with
    <h2 class="page-title"><?php printf( __( 'Search Results for: %s', 'catchkathmandu' ), '<span>' . get_search_query() . '</span>' ); ?></h2>

    Then to remove the image from the search, you need to copy content.php file and then replace
    <?php if ( function_exists( 'catchkathmandu_content_image' ) ) : catchkathmandu_content_image(); endif; ?>

    with
    <?php if ( function_exists( 'catchkathmandu_content_image' ) && !is_search() ) : catchkathmandu_content_image(); endif; ?>

    then to change the post title from h1 to h3. replace the following code from content.php
    <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'catchkathmandu' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
    with
    <h3 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'catchkathmandu' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h3>

    in reply to: problem on excerpt and thumbnail alignment #62751
    Sakin
    Keymaster

    @Luchino: I will go for solution no 4. Don’t use the plugin and insert image directly in the post. Then change the archive layout to “Show Full Content (No Featured Image)” from “Appearance => Customize => Theme Options => Layout Options => Archive Content Layout”

    Stripping format in the excerpt in done by WordPress core and we are not allowed to change that from theme. Sorry for that.

    in reply to: Problem with Featured Slider #62750
    Sakin
    Keymaster

    @Joseph: Thanks for your appreciation.

    in reply to: Remove Search From Header #62749
    Sakin
    Keymaster

    @Robertf: thanks 🙂

    in reply to: home page featured content disappeared after upgrade #62721
    Sakin
    Keymaster

    @effess: what was the edit you have done in your child theme. Need to check that.
    Also check in your “Select Content Type” in “Appearance => Theme Options => Featured Content => Featured Content Options”

    in reply to: home page featured content disappeared after upgrade #62719
    Sakin
    Keymaster

    @effess: Looks like you have edited files inside catch-kathmandu-pro theme directory. As when you update the theme, all the files and codes inside catch-kathmandu-pro theme directory will be reverted back to original.

    So, you need to change the Featured Content from “Appearance => Theme Options => Featured Content”. Then in Featured Content options box, you need to select Content Type, enable content, and so on. Then if you choose Image Content, then you need to upload image and content from “Featured Image Content Options”.

    in reply to: Mobile Version of Desktop top header menu #62718
    Sakin
    Keymaster

    @Michael: To change the mobile menu icon hover color, you can adjust the color code in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:
    .mobile-menu-bar:hover { color: #7c9b30; }

    in reply to: Enabling 'Adventurous Options' in the Custom Post Admin #62717
    Sakin
    Keymaster

    @Horst: nice you solved it. Thanks 🙂

Viewing 20 posts - 2,701 through 2,720 (of 14,501 total)