Forum Replies Created

Viewing 20 posts - 9,341 through 9,360 (of 14,504 total)
  • Author
    Posts
  • in reply to: Slider problems&number of posts displayed #18443
    Sakin
    Keymaster

    @caramele: I found the issue with “PE Category Filter” category.

    in reply to: white space below the slider and 3 headers #18442
    Sakin
    Keymaster

    @suchi: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box. Initially it was 50px so the following CSS will reduce it by 30px.

    @media screen and (min-width: 961px) {
    .home #main { padding-top: 20px; }
    .home .hentry { padding-bottom: 20px; }
    }
    in reply to: Custom background color per page #18440
    Sakin
    Keymaster

    @blackkeys: If you want to change the border color of the form input and textarea fields then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    input[type="text"], input[type="email"], textarea { border-color: #000; }

    in reply to: Hide Text #18439
    Sakin
    Keymaster

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

    #header-menu ul.menu a { text-transform: none; }
    .site-content #nav-below { display: none; }
    in reply to: move search-box in header #18438
    Sakin
    Keymaster

    @silentcall: I see that you have added the following CSS in your Custom CSS box to position the header top sidebar.

    .sidebar-top {
        position: absolute;
        right: 4px;
        top: 42px;
    }

    You can change that to

    .sidebar-top {
        bottom: 0;
        position: absolute;
        right: 4px;
    }

    and if you want to go further down you can add the following CSS
    .sidebar-top .widget { margin-bottom: 0; }

    in reply to: No image in excerpt style #18437
    Sakin
    Keymaster

    @emily.m: Please take a look at our theme instruction page http://catchthemes.com/theme-instructions/catch-evolution/. For Excerpt layout, first you need to set Featured Images on those posts. Then only the Featured Image from that post will be displayed. The recommended size for featured image is 644px width and 320px height. So, if you have small image than this then it will display your original image and if it’s bigger then it will crop exactly in the size 644px width and 320px height.

    in reply to: list posts with Tumbs on a page #18436
    Sakin
    Keymaster

    @silentcall: Thanks for sharing.

    in reply to: Changing the word "Home" #18434
    Sakin
    Keymaster

    @drsjpdc: I see that you have created Static Page O HAC as the Homepage. So, to remove the comment box from that page, you need to edit that page and then in Discussion box you need to uncheck “Allow Comments”. See this screenshot http://www.pinterest.com/pin/548594798329843253/

    in reply to: Remove Featured Image on Posts #18427
    Sakin
    Keymaster

    Thanks @lakeoswegobaseball and @dhv77 🙂

    in reply to: Changing the word "Home" #18417
    Sakin
    Keymaster

    @drsjpdc: The best option is to create “Custom Menu” from “Appearance => Menus”, from there you will see Page and then click on “View All” and select “Home” and click on Add to Menu. This will add Home to your menu and then you can change the “Navigation Label” of that menu elements.

    After you create the menu you can assign that menu as Primary Menu from “Appearance => Menus => Manage Locations”

    You can see the details explanation of Custom Menu in this screenshot http://www.pinterest.com/pin/548594798330820987/ and at our blog http://catchthemes.com/blog/custom-menus-wordpress-themes/

    in reply to: not display site with IE #18408
    Sakin
    Keymaster

    @web-automobile: This is complete css for IE8. You can see it’s full block. It should work. But you have to check your site form real IE8 not any tester.

    #ie8 #branding #site-logo img {
        clear: both;
        display: block;
        height: 102px;
        margin: 0;
        width: 960px;
    }
    in reply to: Featured image transforms into header image #18407
    Sakin
    Keymaster

    @osaczenitram: Thanks for your appreciation.

    in reply to: Featured image transforms into header image #18405
    Sakin
    Keymaster

    Yes, you can build child theme and then create functions.php file in your child theme add the following Code in your child theme functions.php file.

    <?php
    /**
     * Header Image
     *
     * Uses Custom Header and Featued Images
     * @Hooked in catchevolution_headercontent
     * @since Catch Evolution 1.0
     */
    function catchevolution_featured_header() { 
    	global $wp_query, $post, $paged, $_wp_default_headers;
    	
    	// Header Image
    	$header_image_path = get_header_image();
    
    	if ( get_header_image() ) : ?>
    		<div id="header-image">
    			<img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" />
    		</div>
    	<?php endif; 
    	
    	
    }
    in reply to: Page Content Alignment #18403
    Sakin
    Keymaster

    @Ayisids: In that page, I see that you have choose “No Sidebar” layout in that what is why there is no sidebar. You can change that to default layout from “Select Sidebar Layout” metabox.

    in reply to: iPad Safari Menu Sublink support #18401
    Sakin
    Keymaster

    @paulf: Done.

    in reply to: Featured image transforms into header image #18398
    Sakin
    Keymaster

    @osaczenitram: Actually the Featured Header Image will be replaced by Featured Image on that particular page or post. I don’t know why it didn’t get replace for your other post. Please check in the Featured Image.

    If you want to add Logo image then that one is different. You need to add it from “Appearance => Theme Options => Header Options”.

    in reply to: Tab bar on internet browser #18397
    Sakin
    Keymaster

    @dhv77: I don’t see any reason for setting Static homepage. To add home on Menu. You can simply create Custom Menu from “Appearance => Menus”, then you will see “Pages” then click on “View All” and then select “Home”. Accordingly, you can add in Pages, Categories and links as per you need. See details about menus at http://catchthemes.com/blog/custom-menus-wordpress-themes/

    But if you want to stay with your current menu and just work on the title then you need to install “WordPress SEO by Yoast” plugin and customize your title as per your need.

    in reply to: Slider problems&number of posts displayed #18395
    Sakin
    Keymaster

    @caramele: I have just emailed you.

    in reply to: Tab bar on internet browser #18393
    Sakin
    Keymaster

    @dhv77: Can you post in your site URL and then I will check in.

    in reply to: not display site with IE #18385
    Sakin
    Keymaster

    @web-automobile: Really difficult to debug it as it is showing for me. Ok can you try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #ie8 #branding #site-logo img {
        display: block;
        width: 960px;
    }
Viewing 20 posts - 9,341 through 9,360 (of 14,504 total)