Forum Replies Created

Viewing 20 posts - 3,641 through 3,660 (of 14,506 total)
  • Author
    Posts
  • in reply to: Widges Header Sidebar #58224
    Sakin
    Keymaster

    2. For this, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .header-sidebar .widget {
        clear: none;
        margin-right: 10px;
    }

    3. You can adjust the margin top and bottom as per you need to reduce the grey area and then add it in “Appearance => Theme Options => Custom CSS” box:

    .site {
        margin-top: 40px;
        margin-bottom: 40px;
    }

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

    #site-title, #site-description {
        float: left;
    }
    in reply to: menu at bottom of slider / featured image #58222
    Sakin
    Keymaster

    @mosign: Yes, for Catch Responsive Pro you can use http://catchthemes.com/support-forum/forum/catch-responsive-pro-premium/. But to change menu position, you can use the same code as below in Catch Responsive Pro child theme.

    in reply to: Remove the word "Home" from the home page #58221
    Sakin
    Keymaster

    @Maria: Thanks 🙂

    in reply to: Hide Menu item on Mobile device #58211
    Sakin
    Keymaster

    @machoyouk: It doesn’t matter if it’s page or post or category or link. You just count the number in which position that link is and then remove it.
    For 1st, it will be:
    #tinynav1 option:nth-child(1n) { display: none; }

    for 15th, it will be:
    #tinynav1 option:nth-child(15n) { display: none; }

    in reply to: Menu text size modification #58210
    Sakin
    Keymaster

    @roderick: You can change the font size in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    /* For Site Title */
    .site-title {
        font-size: 38px;
    }
    /* For Footer Text */
    #site-generator {
        font-size: 13px;
    }
    in reply to: Change color of footer widget text #58209
    Sakin
    Keymaster

    @roderick: In Catch Responsive Pro theme, you can change the site tagline text color from “Appearance => Customize => Color Options => Header Color Options” and then change the color of “Tagline Color” and save it.

    in reply to: Problem with page appearance #58208
    Sakin
    Keymaster

    @Panayot: thanks and it’s great that your plugin developer fixed it.

    in reply to: Full-Width Option Not Working after Update #58207
    Sakin
    Keymaster

    @marksp: I check in your site from Firefox and it is showing no sidebar full width in your homepage. Can you upload screenshot and show me what’s not working in your browser.

    Sakin
    Keymaster

    @greydoolin: Thanks for understanding and supporting us.

    in reply to: Custom Post Slider #58205
    Sakin
    Keymaster

    @Juan: We are doing fine and we are slowing recovering.

    Yes, it will not take custom post type. For that you need to build child theme, refer to child theme at http://catchthemes.com/blog/create-child-theme-wordpress/

    1. Then copy catchbox_sliders() function to your child theme functions.php file and then edit the following code:

    $get_featured_posts = new WP_Query( array(
    	'posts_per_page' => $postperpage,
    	'post__in'		 => $options[ 'featured_slider' ],
    	'orderby' 		 => 'post__in',
    	'ignore_sticky_posts' => 1 // ignore sticky posts
    ));

    In the above code you need to add in post_type. So, it will be as below:

    $get_featured_posts = new WP_Query( array(
    	'posts_per_page'		=> $postperpage,
    	'post_type'				=> 'post,events',
    	'post__in'				=> $options[ 'featured_slider' ],
    	'orderby'				=> 'post__in',
    	'ignore_sticky_posts'	=> 1 // ignore sticky posts
    ));

    Note: you need to change that events with your post type.

    Sakin
    Keymaster

    @widespread: For this you need to add xml file wpml-config.xml in catch-base theme directory.

    <wpml-config>
        <admin-texts>
            <key name="catchbase_options">
    			<key name="featured_content_headline"/>
                <key name="featured_content_subheadline"/>	
            </key>
        </admin-texts>
    </wpml-config>

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

    /**
     * Template for Clearing WPML Invalid Cache
     *
     * To override this in a child theme
     * simply create your own catchbase_wpml_invalidcache(), and that function will be used instead.
     *
     * @since Catch Base
     */
    function catchbase_wpml_invalidcache() {
    	delete_transient( 'catchbase_featured_content' );
    
    } // catchbase_wpml_invalidcache
    endif;
    
    add_action( 'after_setup_theme', 'catchbase_wpml_invalidcache' );

    Note: We need to work on this to make our theme Polylang plugin ready. It’s getting late as we are suffering from earthquake and after shocks in Nepal. So, it will be delayed for now.

    in reply to: Catch base pro – two vertical lines appear #58201
    Sakin
    Keymaster

    @knudkp: Can you check your Featured Content Options. Go to “Appearance => Customize => Featured Content Options” and Featured Content Settings, you can choose “Disabled” in Enable Featured Content on option. I see that you have select Featured Content type as Featured Page Content and then you haven’t selected pages.

    in reply to: Slider area white #58200
    Sakin
    Keymaster

    @Creese: ok then add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #feature-slider {
        background-color: #fff;
    }
    in reply to: menu at bottom of slider / featured image #58195
    Sakin
    Keymaster

    @mosign: It would have been easy for me to explain if you had your site live. So, I could check in your slider and featured image. Also, you shouldn’t edit any core theme files such as header.php, index.php, functions.php, style.css and so on which are inside catch-responsive theme directory. As all these edits will be reverted back to original when you update or upgrade your theme.

    If you want to edit any core theme files then you need to build child theme and edit it. For child theme, check out http://catchthemes.com/blog/create-child-theme-wordpress/. You can download sample child theme from there and then add the following code in your child theme functions.php file.

    // Unhook default Catch Responsive functions
    function unhook_catchresponsive_functions() {
        remove_action( 'catchresponsive_after_header', 'catchresponsive_primary_menu', 20 );
    }
    add_action( 'init', 'unhook_catchresponsive_functions' );
    
    //Adding menu after slider
    add_action( 'catchresponsive_before_content', 'catchresponsive_primary_menu', 20 );
    in reply to: Word wrap the captions under pics? #58194
    Sakin
    Keymaster

    @Kathy: It’s css from your plugin css http://new.stoneimpressions.com/wp-content/uploads/bb-plugin/cache/446-layout.css. So, either change that css or add the following css in “Appearnce => Customize => Theme Options => Custom CSS Options” box:

    .site .fl-photo-caption {
        text-overflow: clip;
    }
    in reply to: Slider area white #58193
    Sakin
    Keymaster

    @Creese: Just go to “Appearance => Customize => Colors” and change the “Background Color” as per your need.

    in reply to: Homepage only sidebars #58191
    Sakin
    Keymaster

    @Massimo: Try adding in the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box

    .home #content_sidebar_wrap #main {
        display: none;
    }
    @media screen and (min-width: 991px) {	
        .home.three-columns.equal-columns #content_sidebar_wrap,
        .home.three-columns.equal-columns .sidebar-secondary {
            width: 50%;
        }
        .home.three-columns.equal-columns .sidebar-primary {
            width: 100%;
        }
    }
    in reply to: Printing problem #58185
    Sakin
    Keymaster
    in reply to: Alternative to Excerpt function? #58184
    Sakin
    Keymaster

    @johnbatt: Cool you found it 🙂

    in reply to: Slider area white #58183
    Sakin
    Keymaster

    @Creese: Sorry I don’t understand it. I don’t think Catch Responsive theme has blue slider area. Can you post in your site URL and then I will check in for you.

Viewing 20 posts - 3,641 through 3,660 (of 14,506 total)