Forum Replies Created

Viewing 20 posts - 9,341 through 9,360 (of 14,500 total)
  • Author
    Posts
  • 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;
    }
    in reply to: How To Change "Continue Reading" text? #18384
    Sakin
    Keymaster

    @Jaime: Languages are in your .mo and .po files that you generate from .pot file.

    in reply to: Remove Post Date #18383
    Sakin
    Keymaster

    @Billybob7522: You cannot remove just the date from CSS as there in no element to select it. So, the best option to modify it will be by building child theme and create functions.php file in your child theme and copy function catchevolution_posted_on() from catchevolution-functions.php and edit it as per your need.

    From CSS if you remove the Date, it will be as below:
    .entry-header .entry-meta .entry-date { display: none; }

    in reply to: Getting rid of slider #18381
    Sakin
    Keymaster

    @inventorgeorge: You can just go to “Appearance => Theme Options => Featured Post Slider => Slider Options” and then in “Enable Sidebar”, you can just select “Disable”.

    There is no such chart but you can see details about the feature additional in our Catch Evolution Pro theme instruction page at http://catchthemes.com/theme-instructions/catch-evolution-pro/

    in reply to: bluehost php 5.4 #18379
    Sakin
    Keymaster

    @cssi2007: I don’t think it’s the theme that is causing issue. Mostly the blank screen you get it from Plugins and your WordPress setup. Our theme is compatible with PHP 5.4. There is no problem with it.

    You can talk with BlueHost support team.

Viewing 20 posts - 9,341 through 9,360 (of 14,500 total)