Forum Replies Created

Viewing 20 posts - 7,721 through 7,740 (of 14,504 total)
  • Author
    Posts
  • in reply to: Featured Post Slider Broken? #29391
    Sakin
    Keymaster

    @whtknt: See the Theme Instructions page at http://catchthemes.com/theme-instructions/catch-everest/ . Catch Everest Free version only have option to add “Featured Post Slider” to highlight your post in the slider.
    Add Featured Post Slider:
    * First, you need to create post from “Posts => Add New” and add in the Featured image in your post.
    How to add Featured Image in Post?
    * Open the editor of the post where you want to display image, and locate the Featured Image module in the bottom right corner under Page Attributes. Click on Choose a Featured Image.
    * Then you can either upload the image from your computer or select the existing image from your media library and click on Set Featured Image. Click to view screenshot
    * Then you need to go to “Appearance => Theme Options => Featured Post Slider =>Featured Post Slider Options” and simply insert the ID numbers for Posts in the boxes, one Post ID number in each box. Click to view screenshot
    * Click on Save Changes button
    But if you want Featured Image Slider where you want independent image slider then you need to upgrade to Pro version. See the Catch Everest Pro version theme instructions at http://catchthemes.com/theme-instructions/catch-everest-pro/

    in reply to: Primary menu not displaying #29389
    Sakin
    Keymaster

    @kenyamax: I see that you have added Secondary Menu and then added “Widgets” in Header Right Sidebar. So, when you add widgets in Header Right Sidebar, your default primary get replaced with the widgets. So, if you want to add Primary Menu as well in your Header Right Sidebar. Then you can drag and Drop “Menus” widgets in your Header Right Sidebar and Select Primary menu.

    in reply to: MouseOver or Hover in Homepage Feature Content #29388
    Sakin
    Keymaster

    @Alex: Sorry I don’t get it what you mean. Can you explain with reference to your site URL what you want to do on mouse hover.

    in reply to: Hide "Home" Menu Link #29386
    Sakin
    Keymaster

    @jplatenius: Did you change that directly in core theme file catchkathmandu-functions.php? Please don’t edit any core theme files directly, as these theme files will be reverted back to original when you update the theme.

    So, to remove the home. Either you just build “Custom Menu” from “Appearance => Menus” and assign location to your menu. This Custom Menu will replace your Page Menu.

    But if you want to keep your page menu and just remove the home then you need to build child theme, create functions.php file in your child theme and add the following code:

    <?php
    /**
     * Catch Kathmandu Child functions and definitions
     */
    // Removing the Default Action Hook
    function unhook_catchkathmandu_functions() {
    	remove_filter( 'wp_page_menu_args', 'catchkathmandu_page_menu_args' );
    }
    add_action( 'init', 'unhook_catchkathmandu_functions' );
    in reply to: Changing Text and Color size in a page #29385
    Sakin
    Keymaster

    @JingJing: Nice that you fixed it. Thanks for the info.

    in reply to: color picker does not show up #29384
    Sakin
    Keymaster

    @valerie: Thanks for the access. I found the issue is with out dated MOD_SECURITY core ruleset, more information https://github.com/SpiderLabs/owasp-modsecurity-crs/blob/master/CHANGES#L363

    This rule blocked our jQuery.cookie.js/jQuery.cookie.min.js scripts

    If you can contact your hosing server support server and tell them to update. Then this problem will be solved automatically.

    For now, I have build child theme where I have renamed cookie. But after your server update is MOD_SECURITY, you don’t need this child theme.

    in reply to: Image and Blockquote Alignment #29379
    Sakin
    Keymaster

    @Alex: No I mean the text in the editor, I wanted to see how the image and text is used. In you page editor you have “Visual” and “Text”. I need you to go to “Text” mode and copy all the code and post it in gist.

    in reply to: color picker does not show up #29274
    Sakin
    Keymaster

    @valerie: Ok I will send you email.

    in reply to: Image and Blockquote Alignment #29273
    Sakin
    Keymaster

    @Alex: If you are working locally then can you upload the full text that you added in that page in http://gist.github.com/ and send me the link. Then I will copy that code in my server and check in.

    Sakin
    Keymaster

    @Dudley: Actually the slider featured image recommendation size in 754px width and 400px height. But your image is too small. That is why it is showing like that.

    in reply to: color picker does not show up #29266
    Sakin
    Keymaster

    @valerie: The latest version of Catch Everest Pro in version 2.2 and when I check in our server. It is working fine. Can you check in and if this is not working then I need to check in detail in your server. So, let me know it.

    Sakin
    Keymaster

    @Dudley: I don’t get it what you mean. The text in the slider will be just on the bottom of the image. Can you how me the screenshot of what you want?

    in reply to: Image and Blockquote Alignment #29175
    Sakin
    Keymaster

    @Alex: Sorry Alex I mean the the real site URL. You just send me the screenshot.

    in reply to: How to change Footer Widget color #29103
    Sakin
    Keymaster

    @greengiant: For slider text background, you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #main-slider .entry-container {
    	background: #339933; /* Show a solid color for older browsers */
    	background: rgba(51, 153, 51, 0.6);
    }
    #main-slider .entry-container:hover {
    	background: #339933; /* Show a solid color for older browsers */
    	background: rgba(51, 153, 51, 1);
    	border: 1px solid #329232;
    }

    For menu color and all you can upgrade to Catch Kathmandu Pro theme.

    in reply to: Update and childtheme #29102
    Sakin
    Keymaster

    @mveltman: You don’t need to build child theme if you are ok with the changes you have made from “Appearance => Theme Options” panel. These changes are perfectly fine and you don’t need to build child theme. Your changes made though Options panel is perfectly safe to update.

    You only need to build child theme in you are doing advance customization of functions and style.

    Note: You should not change any core theme files such as index.php, functions.php, style.css and so on. To edit these files you need to build child theme. As these files will be reverted back to original when you update the theme.

    in reply to: Disabled responsive Design problems with header #29100
    Sakin
    Keymaster

    @Peter: Can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    #branding, #header-image, #header-menu, #main, #colophon { min-width: 1230px; }
    .wrapper { padding-right: 20px; padding-left: 20px; }
    in reply to: Change width of featured image #29079
    Sakin
    Keymaster

    @Sebastian: That’s fine but since you have decrease the width the image, you might want to increase the width of the article. If so then add in the following css in “Appearance => Theme Options => Custom CSS” box.

    .post .post-article {
        width: 70%;
    }
    in reply to: Disabled responsive Design problems with header #29073
    Sakin
    Keymaster

    Hi Nicole,

    Can you post in your site URL so that I can check in the issue.

    Regards,
    Sakin

    in reply to: Image and Blockquote Alignment #29071
    Sakin
    Keymaster

    @Alex: Can you add in the page URL so that I can check in.

    in reply to: Making child theme #29070
    Sakin
    Keymaster

    @aslkin13: Catch Kathmandu child theme style.css should begin like this https://gist.github.com/catchthemes/10444389

Viewing 20 posts - 7,721 through 7,740 (of 14,504 total)