Forum Replies Created

Viewing 20 posts - 10,981 through 11,000 (of 14,509 total)
  • Author
    Posts
  • in reply to: child theme #13191
    Sakin
    Keymaster

    @ashrafashraf: After you create child theme, all the core theme files edits has to be done through child theme.

    in reply to: Breadcrumbs plugin issue #13183
    Sakin
    Keymaster
    in reply to: Turn off left and right arrows on Slider #13182
    Sakin
    Keymaster

    @omgstyle: Can you send me your site URL? I don’t know where the cover word is.

    in reply to: Problem with pictures #13181
    Sakin
    Keymaster

    @ashrafashraf: I don’t get it what you mean. Can you send me the screenshot of what you are asking for.

    in reply to: Problem with pictures #13163
    Sakin
    Keymaster

    @ashrafashraf: That’s inside the table so I cannot break in or float it.

    in reply to: Free vs Pro #13160
    Sakin
    Keymaster

    @karenstl: 20 color options means, you can customize the 20 individual elements of the theme. You can pick any color or those elements.

    in reply to: Problem with pictures #13158
    Sakin
    Keymaster

    @ashrafashraf: That is the issue of your table not the theme.

    in reply to: Header Enlargement #13156
    Sakin
    Keymaster

    @karenstl: I already told you the total width is 1140px.

    in reply to: Free vs Pro #13155
    Sakin
    Keymaster

    @karenstl: If you are happy with the Free version of Catch Everest then it’s fine. Yes, you can get the list of additional features though theme instructions page at http://catchthemes.com/theme-instructions/catch-everest-pro/

    in reply to: Header Enlargement #13150
    Sakin
    Keymaster

    @karenstl: You can hide it form “Appearance => Theme Options => Header Right Section”. Then click on “Disable Header Right Section” and save it.

    in reply to: Theme Update #13149
    Sakin
    Keymaster

    @dbevarly: Yes, you can install it in WP Multi-site network. That is not a problem.

    in reply to: Problem with pictures #13148
    Sakin
    Keymaster

    @ashrafashraf: Can you be more specific or share screenshot what is not working fine.

    in reply to: Can't Download Theme? #13140
    Sakin
    Keymaster

    @Fl0W: I just check in your account with sales and see that you have cancelled the theme. Please don’t click on cancel from next time. I have just created new order. Now you should be able to login and download the theme.

    in reply to: Theme Update #13137
    Sakin
    Keymaster

    @dbevarly: when you change the theme, you don’t need to copy and paste the content. Your content will be in stored in database so it will not be depended on Theme.

    You can simple change the theme to Catch Box Free Theme and then use the plugin “Regenerate Thumbnails” plugin to regenerate your old image to new size of Catch Box theme. Then you can set Header, background and all changes from “Appearance => Theme Options” panel.

    Once you set it in Free version, you can simple activate Catch Box Pro version. Which is just a featured addition to Catch Box Free Version. So, it will all go smooth. You just need to set you menu and header, that is also though just a click in settings.

    in reply to: Remove title from header #13136
    Sakin
    Keymaster

    @crusehh: I don’t get it what you mean. You can remove the header image form “Appearance => Header”.

    If you are not talking about this then can you send me your Site URL and the screenshot of what you want to do it.

    in reply to: Pinterest #13135
    Sakin
    Keymaster

    @karenstl: There is Pinterest icon in Catch Everest Theme. Just add your Pinterest URL from “Appearance => Theme Options => Social Links”.

    in reply to: Featured Image showing twice on blog posts #13134
    Sakin
    Keymaster

    @karenstl: For remove it, you need to upgrade to Catch Everest Pro version. But in free version you can hide it by add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .single .featured-image { display: none; }

    in reply to: How to fix multiple h1 tags #13133
    Sakin
    Keymaster

    @spiritexpressing: Multiple H1 is allowed in HTML5 and we have carefully designed H1 tags with special attention on header tag and headings.

    You can also check this Video http://www.youtube.com/watch?v=GIn5qJKU8VM by Google software engineer Matt Cutts, who clearly states that you can use multiple H1 but don’t over do it. Also use h1 specific to heading and header tags.

    You can also check this article URL http://html5doctor.com/html5-seo-search-engine-optimisation/

    in reply to: Catch Everest javascript version #13132
    Sakin
    Keymaster

    @crusehh: WordPress 3.6 uses jQuery version 1.10.2. See this in your site http://mmghealth.com/wp-includes/js/jquery/jquery.js?ver=1.10.2

    So, this is not a theme or plugin issue. Either you need to change your map to Google Map or you need to add new version of jQuery through Google CDN. For that you need to build child theme and add the following Code in your child theme functions.php

    function catchchild_jquery_enqueue() {
    	if ( !is_admin() ) {	
    		wp_deregister_script( 'jquery' );
    		wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js', false, '2.0.3' );
    		wp_register_script( 'jquery', "http" . ($_SERVER['SERVER_PORT'] == 443 ? "s" : "") . "://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js", false, null);
    		wp_enqueue_script( 'jquery' );
    	}
    }
    add_action( 'wp_enqueue_scripts', 'catchchild_jquery_enqueue' );

    For more please take help from WordPress Support Forum as this is not a theme or plugin issue.

    in reply to: Font size and space between text in menu #13129
    Sakin
    Keymaster

    @Nixos: For menu, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #header-menu ul.menu { text-align: left; }
    #header-menu ul.menu a { padding: 0 15px; }

    For SEO stuff. I see that you have remove the Site Title from “Settings => General”. That is why it is empty after |. It is recommended add title. Also for SEO stuff, I recommend you to use WordPress SEO by Yoast plugin and do the setting. From that plugin you can change the Title as well as description.

Viewing 20 posts - 10,981 through 11,000 (of 14,509 total)