Forum Replies Created

Viewing 20 posts - 8,601 through 8,620 (of 14,497 total)
  • Author
    Posts
  • in reply to: Error when I upgrade to catch everest pro #20847
    Sakin
    Keymaster

    @Colin: After you purchase the Catch Everest Pro theme you can download the theme zip file from http://catchthemes.com/my-account/ and install it. See the theme instruction page at http://catchthemes.com/theme-instructions/catch-everest-pro/

    in reply to: Center Tagline under Site Title #20846
    Sakin
    Keymaster

    @Troy: You can add padding left by adding the following CSS in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 769px) {
    #site-description { padding-left: 44px; }
    }
    in reply to: Footer areas 2 & 3 gone #20845
    Sakin
    Keymaster

    @aeriformarts: Cool 🙂

    in reply to: Enable Zooming in Child Theme #20844
    Sakin
    Keymaster

    @Websiteguy: just add the following code in your child theme functions.php file.

    // Removing the Default Slider
    function unhook_catcheverest_functions() {
    	remove_action( 'wp_head', 'catcheverest_responsive', 5 );
    }
    add_action( 'init', 'unhook_catcheverest_functions' );
    
    //Responsive Meta in Child Theme 
    function catcheverest_child_responsive() {
    	// Getting data from Theme Options
    	global $catcheverest_options_settings;
       	$options = $catcheverest_options_settings;
    	$disable_responsive = $options[ 'disable_responsive' ];
    	
    	if ( $disable_responsive == "0" ) {	
    		echo '<meta name="viewport" content="width=device-width, initial-scale=1.0">';
    	}
    }
    add_action( 'wp_head', 'catcheverest_child_responsive', 5 );
    in reply to: Pages with no sidebar #20843
    Sakin
    Keymaster

    @tkabe: It’s because of the following css that you have added in your child theme style.css file. Remove that and it will be fine.

    .no-sidebar #primary {
        	float: none;
        	margin: 0px auto;
    	width: 690px;
    	padding-left: 0;
    }
    in reply to: Home Page Header Images #20842
    Sakin
    Keymaster

    @tkabe: Thanks for using Catch Everest Free theme and great that you are doing customization by building child theme. This is good choice. Before I work on supporting your question. I need to say that removing the Footer Theme information Theme: Catch Everest is not allowed in Free version. This is only recognition that we receive for providing Free Theme and Free Support. So, please add that back or you can upgrade to Catch Everest Pro and change the footer as per your need.

    1. This option is not there is Free version. You can upgrade to pro version and you will have option to user Header Right Sidebar. So, you can just add it from “Appearance => Widgets”.

    1a. Did I place the image in the wrong container or what should have been done different to maintain responsive images.
    — I don’t get it what you mean here.

    1b.I think the fixed size noted in number 2 is a concern. If this needs to be manually edited since the theme implemented this size, what file php contains the header image html?
    — For header image, you upload the image as per your need from “Appearance => Header”.

    2. I also note in the theme header the header image is added with html height and width which seems counter intuitive if the theme is responsive. I used FF Web Dev Tool bar and inspector on the img tag in the #site-logo and the img file shows up with width 769 x height 125.
    — HTML size has nothing to do with responsive design. Also the height and width are added by WordPress custom header function by default. The responsive design is controlled from CSS using media query.

    in reply to: Pre-purchase question #20838
    Sakin
    Keymaster

    @jcudak: Yes pro version has option to choose Featured Image Slider where you wan upload independent image, test and links as per your need. You don’t need coding experience.

    Your slider options will look like this http://www.pinterest.com/pin/548594798329509357/ and you can follow the instructions mentioned at http://catchthemes.com/theme-instructions/catch-kathmandu-pro/

    in reply to: Pugin causes slider to not work #20837
    Sakin
    Keymaster

    @Nancy: This plugin is not a good plugin as they have enqueue their own jquery.js instead they need to add the core WordPress jquery. They are not following WordPress guideline for development. Try to search for better plugin.

    Maybe you can try removing the following code from wpng-calendar.php file. For more you need to hire customizer as this is not theme issues.
    wp_enqueue_script('jquery-js', get_bloginfo('wpurl') . '/wp-content/plugins/wpng-calendar/js/jquery.js', null, '6124');

    For link in Menu to open in new window. You need to build custom menu from “Appearance => Menus” then you need to assign that menu the location from “Appearance => Menus => Menu Locations”

    Screenshots in Pinterest:
    For custom menu: http://www.pinterest.com/pin/548594798330820987/
    For link in new window: http://www.pinterest.com/pin/548594798330834738/

    in reply to: Removing custom slider from pages #20836
    Sakin
    Keymaster

    @jp_grennier: That is issue with the slider position in the code. So, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box to remove it.

    .page-id-382 #main { padding-top: 0; }
    .page-id-382 article .entry-header { display: none; }
    in reply to: Featured Slider Text Boxes #20834
    Sakin
    Keymaster

    @delboorman: Hiring the customizer is the best idea http://catchthemes.com/hire-customizer/ .

    You can try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #main-slider .entry-title span,
    #main-slider .entry-title span:hover,
    #main-slider .entry-content,
    #main-slider .entry-content:hover { 
        background-color: transparent; 
        color: #fff; 
    }
    #main-slider .entry-container {
        height: 322px;
        left: 12px;
        top: 12px;
        width: 246px;
    }
    #main-slider .entry-title span { padding-bottom: 0 }
    #main-slider .entry-content { padding-top: 0 }
    #controllers {
        background: rgba(0, 0, 0, 0.7);
        bottom: 12px;
        left: 12px;
        position: absolute;
        text-align: right;
        width: 966px;
    }
    #controllers a {
    text-indent: 999999px;
        background: rgba(255, 255, 255, 1);
    }
    #controllers a:hover, 
    #controllers a.active {
        background:rgba(180,37,45,1);
    }
    in reply to: Regarding Widgets #20812
    Sakin
    Keymaster

    @hawfinchtaylor: Thanks for using Simple Catch Theme.

    1. Side Bar Tabbed Widgets for recent post of desired categories
    — This is not available in theme. You need to search for plugin to do that for you. Check out at http://wordpress.org/plugins/

    2. Flashing recent post widgets at the bottom of post.
    — This also falls under plugin territory. They are using nrelate Related Content plugin.

    in reply to: Edit Header Widget #20811
    Sakin
    Keymaster

    @pmt1992: Yes, I see that you are using Catch Everest Free theme in your WordPress Site. For theme instruction you can check out http://catchthemes.com/theme-instructions/catch-everest/. For more option you can upgrade to Catch Everest Pro theme.

    Looks like the developer working with you changed the core theme file to add the content in the header right. As free version don’t have Header Right Sidebar. That is why you are not being able to change it. Also it is not recommended to change any core theme files like index.php, header.php, functions.php, style.css and so on as this changes will be reverted back to original when you update or upgrade the theme.

    Also, you have hide the footer copyright information of Theme: Catch Everest. This is necessary for all free themes. This is only recognition that we receive for providing free themes and free support. If you want to remove that then you can upgrade to pro version and you can edit the footer information from “Appearance => Theme Options => Footer Editor”.

    Looks like all your problem will be solved by upgrading to Pro version. See the detail instructions of Pro version at http://catchthemes.com/theme-instructions/catch-everest-pro/

    in reply to: Default Font Sizes #20810
    Sakin
    Keymaster

    @delboorman: Changing the font size is theme with responsive design is not recommended. Can you send me your site URL and let me know the element for which you want to change the font size. Also let me know the sizes.

    in reply to: Featured Slider Text Boxes #20809
    Sakin
    Keymaster

    @delboorman:
    1. How can I change the font sizes for the header text to be one size and the post text another?
    — The header text and the post text in the slider is different. Can you explain it in reference to your site URL.

    2. Can I set a fixed width for the text boxes?
    — Sorry I don’t get it what you mean. Fixed width with have problem with your mobile devices. Can you tell me what is your expected width that you want to change to.

    3. Can I set the position of where the text boxes are displayed on the slider?
    — Yes you can set it. Let me know where you want to position to.

    4. And finally is it possible to position the next/previous pips at the bottom of the image to the right?
    — Sorry I don’t get it. It’s position at the bottom right only.

    in reply to: Catch Kathmadu Theme Support #20790
    Sakin
    Keymaster

    @adbalentine: In you order Catch Kathmandu Pro version then you will get option to change font and colors from “Appearance => Theme Options => Font Family Options” and “Appearance => Theme Options => Color Options” respectively. For CSS you can add your custom css either by building child theme or by adding your custom css in “Appearance => Theme Options => Custom CSS” box.

    in reply to: removal of unwanted text on homepage slider #20789
    Sakin
    Keymaster

    @kissthegroom: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box to hide it.
    .home #primary { display: none; }

    in reply to: Google authorship #20772
    Sakin
    Keymaster

    @MMchen: After you build child theme, your menu and color might change to default. You can assign menu from “Appearance => Menus” and then you can change the color from “Appearance => Theme options” and from “Appearance => Background”

    You can add link in “Appearance => Theme Options => Social Icons”

    in reply to: removal of unwanted text on homepage slider #20770
    Sakin
    Keymaster

    @kissthegroom: That is the excerpt content from your post. You can add the following CSS in “Appearance => Theme Options => Custom CSS” box to hide it.
    #main-slider .entry-content { display: none; }

    in reply to: Sliders with Posts or Pages #20742
    Sakin
    Keymaster

    @Nancy: You can use image Slider. See the detail instruction at http://catchthemes.com/theme-instructions/catch-evolution-pro/

    in reply to: Centering Social Icons with Footer Text #20741
    Sakin
    Keymaster

    @Nancy: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #site-generator .copyright { clear: none; }

Viewing 20 posts - 8,601 through 8,620 (of 14,497 total)