Forum Replies Created

Viewing 20 posts - 13,641 through 13,660 (of 14,496 total)
  • Author
    Posts
  • in reply to: Email List widgets #4671
    Sakin
    Keymaster

    @arichardc: Sorry we don’t be able to recommend the plugin. Please search in WordPress.org and check various reviews and stats.

    in reply to: Please Please help! Get rid of Mt Everest? #4670
    Sakin
    Keymaster

    @wul: Please see the Theme Instruction http://catchthemes.com/theme-instructions/catch-everest/ . This is Featured Post Slider which can be controlled through “Appearance => Theme Options => Featured Post Slider”

    in reply to: Catch Box Pro Child – missing Header Image #4669
    Sakin
    Keymaster

    @Robertf: Good to know that. thanks.

    in reply to: ETA – WordPress #4654
    Sakin
    Keymaster

    @pele: Catch Everest is not available in WordPress.org and can be managed through WordPress themes manager. We got it approved from WordPress Theme Review Team in just 8 days. Great news

    in reply to: Photo evidence #4653
    Sakin
    Keymaster

    @Elisabetta: Are you talking about Simple Ads Manager plugin. This is not our plugin. I am asking you to use our own widget not the plugin.

    in reply to: Photo evidence #4651
    Sakin
    Keymaster

    @Elisabetta: Go to Appearance => Widgets. then you will see widget name “2_Simple Catch: Adspace Widget”

    in reply to: Setting default page #4650
    Sakin
    Keymaster

    @dhedley: You can to that from your Settings => Reading. Then Click on Static Page and select the static page in Front page list.

    in reply to: Simple Catch Pro slider not working on IE9 #4648
    Sakin
    Keymaster

    @shawnmandel: I don’t know how can we that. I have test in IE 9 as well. See this demo page http://catchthemes.com/demo/simplecatch-pro/ .

    I see that there is text English | Français. Looks like you added this in the Header Code in the Webmaster tool. You are not supposed to add text in header code. That is for the scripts like Google Analytics, Facebook tracking code, Add this and so on.

    in reply to: Changing excerpts from articles on the homepage #4646
    Sakin
    Keymaster

    @web-automobile: This is not possible with css change. You need to build child theme and then customize the functions. You can only do it if you know coding.

    in reply to: How to change the home page title? #4645
    Sakin
    Keymaster

    @poppy: Your site URL please. Why don’t you just change the title of the page, which will change the title. But if you want the menu to show as home. Then you can use the Custom Menu and then change the label of the the menu. See this for custom menu: http://en.support.wordpress.com/menus/

    in reply to: Catch Box Pro Child – missing Header Image #4644
    Sakin
    Keymaster

    @Robertf: It looks fine. Can you show me what is wrong in the site.

    in reply to: Photo evidence #4643
    Sakin
    Keymaster

    @Elisabetta: You can use the Simple Catch: Adspace Widget then add the image url and the link url in that widget.

    in reply to: Secondary Menu #4642
    Sakin
    Keymaster

    @golfer300: there is no secondary menu supported in Catch Everest Theme.

    in reply to: Line on website under menus #4641
    Sakin
    Keymaster

    @poornima.uk: There is border bottom in your header. You can remove that by adding the following CSS in your “Custom CSS” box in your Theme Options panel.
    #header { border: none; }

    in reply to: Affiliate Program? #4640
    Sakin
    Keymaster

    @golfer300: thanks for supporting us. We are in the process of adding affiliate program soon.

    in reply to: how to use Language packs? #4638
    Sakin
    Keymaster

    @mravec: You need to install WordPress in your Language and then installed the theme.

    in reply to: Link to another blogpost inside a new post #4637
    Sakin
    Keymaster

    @thess: To make the sidebar thinner. You can add the following “CSS” in Custom CSS box in Theme Options panel.
    #sidebar.col4 { width: 250px; }

    There is no option to make the front page as you have asked.

    in reply to: Secondary Menu (top bar) Colour Change? #4635
    Sakin
    Keymaster

    @Twonk: You can add the following CSS in “Custom CSS” box in your Theme Options panel to make the secondary menu color similar to primary menu

    #access-secondary { background-color: #3d3d3d; }
    #branding #access-secondary ul.menu a { color: #eee; }
    #branding #access-secondary ul.menu li { border-right: 1px solid #444; }

    To show the category view the way you want. Go to Theme Options => Homepage Content Options and then click on Full Content Display and save. This option will show the full content in the category. But you can insert the more tag in your post to show how much you want to show in the category. This option will give you option to display in the style you want. See this on more tag http://en.support.wordpress.com/splitting-content/more-tag/

    in reply to: Title Above Header/Favicon / Menu tabs #4634
    Sakin
    Keymaster

    @Ted: In Catch Box Pro theme, you can do the customization by adding the following code in your Child Theme functions.php file.

    <?php
    // Removing Catch Box Pr parent theme heder details
    remove_action( 'catchbox_headercontent', 'catchbox_headerdetails', 12 );

    /**
    * Header Details fro child theme
    *
    * @Hooked in catchbox_headercontent
    * @since Catch Box 1.2.1
    */
    add_action( 'catchbox_headercontent', 'catchbox_headerdetails_child', 14 );
    function catchbox_headerdetails_child() { ?>
    <div class="logo-wrap clearfix">
    <hgroup id="site-details">
    <h1 id="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
    <h2 id="site-description"><?php bloginfo( 'description' ); ?></h2>
    </hgroup>
    <?php
    // Check to see if the header image has been removed
    $header_image = get_header_image();
    if ( ! empty( $header_image ) ) : ?>
    <div id="site-logo"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
    <img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" />
    </a></div>
    <?php endif; // end check for removed header image ?>
    </div><!-- .logo-wrap -->
    <?php }

    in reply to: Dropdown in IE #4633
    Sakin
    Keymaster

    @nicosain: By the way what is your site URL? For customizing the functions, I recommend you to build child theme and do the customization there.

Viewing 20 posts - 13,641 through 13,660 (of 14,496 total)