Forum Replies Created

Viewing 20 posts - 4,681 through 4,700 (of 4,916 total)
  • Author
    Posts
  • in reply to: How to Download Theme's Latest Version Zip File #83374
    Mahesh
    Participant

    Hi @abcd,

    Did you get the Catch Base Pro update?

    Regards,
    Mahesh

    in reply to: Catch Updater Plugin Not Downloading As Zip File #83373
    Mahesh
    Participant

    Hi @abcd,

    Thank you for your appreciation.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Color menu on Android different from Windows #83372
    Mahesh
    Participant

    Hi @[email protected],

    Your site seems down so couldn’t check your site. It seems you’ve changed the color for menu in desktop version only. There is another element for the menu for mobile version you’ve to add the CSS rule to that element too.
    It is the ul with id=> “header-mobile-menu-block”.

    Add the CSS as below

    #header-mobile-menu-block li a {
        color: #ff5a00;
    }

    Note: Add rule to this element as you desire.

    Regards,
    Mahesh

    in reply to: Move primary menu below featured image #83371
    Mahesh
    Participant

    Hi @Paul,

    I’ll provide you the code that I’ve tested with which is working fine. Please try with the following.
    1. style.css

    /*
    Theme Name: Catch Kathmandu Pro Child Theme
    Theme URI: http://catchthemes.com/themes/catch-kathmandu-pro
    Author: Catch Themes Team
    Author URI: http://catchthemes.com
    Description: Catch Themes has come up with a full-fledged Corporate/Blog premium WordPress theme, Catch Kathmandu Pro! The design is highly customizable and you can tailor the display to your taste with a few easy clicks. Based on HTML5 and CSS3, it is a responsive theme which automatically adapts to the screen's size, regardless of the devices the visitors use. It has a large screen layout which elegantly extends to 1280 pixels! If you are looking for a clean professional space which accommodates your visuals and yet provides you with ample amount of textual area, Catch Kathmandu Pro is your perfect find. Active community at http://catchthemes.com/support-forum/
    Version: 1.0
    License: GNU General Public License, version 3 (GPLv3)
    License URI: http://www.gnu.org/licenses/gpl-3.0.txt
    Tags: black, blue, gray, white, dark,light, one-column, two-columns, left-sidebar, right-sidebar, fixed-layout, fluid-layout, responsive-layout,  custom-background, custom-header, custom-menu, featured-image-header, featured-images, flexible-header, front-page-post-form, full-width-template, post-formats, sticky-post, theme-options, threaded-comments, translation-ready
    Text Domain: catchkathmandu
    Template: catch-kathmandu-pro
    */
    
    /* =Child Theme Custom CSS
    -------------------------------------------------------------- */

    2. functions.php

    <?php
    /**
     * Child Theme functions and definitions
     *
     */
    
    /**
     * Loading Parent theme stylesheet
     *
     */
    add_action( 'wp_enqueue_scripts', 'catchkathmandu_child_enqueue_styles' );
    function catchkathmandu_child_enqueue_styles() {
        wp_enqueue_style( 'catchkathmandu-parent-style', get_template_directory_uri() . '/style.css' );
    }
    
    /**
     * Moving Primary Slider below Slider
     *
     */
    add_action( 'init' , 'catchkathmandu_child_move_menu_below_slider' );
    function catchkathmandu_child_move_menu_below_slider() {
    	remove_action( 'catchkathmandu_hgroup_wrap', 'catchkathmandu_header_right', 15 );
    	add_action( 'catchkathmandu_before_main', 'catchkathmandu_header_right', 15 );
    }

    The link below is the image of the changes made with the above codes in the child theme.
    http://www.awesomescreenshot.com/image/925575/3ad7ec7128fb34c76175a8c2b3cdad24

    Regards,
    Mahesh

    in reply to: Catch Responsive Child Theme #83369
    Mahesh
    Participant

    Hi @husker,

    It seems, you’ve put the Game Countdown widget in the “Footer Area 1”. Please check the widgets are in the right places in admin section.
    And what updates have you made to the main theme’s slider?
    The changes main theme should be same on the child theme too, unless you’ve modified it to something else in the child theme.

    Hope you understand, let me know further.

    Regards,
    Mahesh

    in reply to: Double menu on mobile devices #83367
    Mahesh
    Participant

    Hi @witgi,

    Yes, no problem. Please email it to me @ [email protected].
    If you have just modified the theme for secondary menu hack and changed nothing else I recommend you to install a fresh copy of the theme again and check.

    Regards,
    Mahesh

    in reply to: Catch Responsive Child Theme #83315
    Mahesh
    Participant

    Hi @husker,

    The above mentioned code is all correct. It is working fine as I tested it.
    Could you please post in you site url?

    Regards,
    Mahesh

    in reply to: Featured Slider Loads Relatively Slowly #83305
    Mahesh
    Participant

    Hi @LiminalLLC,

    The issue is not because of the theme itself. It is simply because of the size of the images ( all 3 images are more than 1MB ). We recommend you to optimize the image size. Your idea of changing images from png to jpg is perfect.
    The recommended size for the slider is:
    Slider
    Width: 1920px
    Height: 800px

    Regards,
    Mahesh

    in reply to: social linking icons #83304
    Mahesh
    Participant

    Hi @ShayC,

    The above mentioned feature is not allowed in WordPress repository and falls in plugin territory. I recommend you to use a suitable plugin from WordPress Plugin Repository

    Regards,
    Mahesh

    in reply to: Easyrotator Home page Sidepage or other page #83303
    Mahesh
    Participant

    Hi @Olivier,

    Thank you for using Catch Box Pro.

    The theme as number of sidebars. Here is some a brief info on which page displays which sidebar.
    Homepage Sidebar( if active ) => Display in Homepage
    Archive Sidebar (if active ) => Display in Archive
    Page Sidebar (if active ) => Display in Page
    Post Sidebar (if active ) => Display in Post
    Main Sidebar => Displays by default.

    If no sidebar is assigned except main sidebar, all page will display main sidebar.

    Hope this helps you.

    Regards,
    Mahesh

    in reply to: Move primary menu below featured image #83302
    Mahesh
    Participant

    Hi @Paul,

    Have you made any changes to the Catch Kathmandu Pro theme files?
    Please let me know further details.

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @Lucia,

    As per your questions, I’ll break down the solutions to its respective numbers.
    1. For menu bar gradient effect. Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS.

    #header-menu #access, #colophon #access-footer{
    	background: linear-gradient(#86030d, #222) repeat scroll 0 0 rgba(0, 0, 0, 0);
    }

    Note: please change the hex value “#86030d” and “#222” as per desired.

    2. With responsive design, what issue are you facing? Please let me know so I could help your further.

    3. To change archive dropdown menu’s styles, go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS.

    select#archives-dropdown-3 {
        background: #A2A2A2;
        font-family: Times New Roman;
        font-size: 17px;
    }

    Regards,
    Mahesh

    in reply to: catch responsive-default-options.php #83300
    Mahesh
    Participant

    Hi @husker,

    Thank you for your appreciation.
    Please visit this SITE for more details on how to create a child theme.

    Have a nice day!

    Regards,
    Mahesh

    in reply to: Social Links – blank page #83299
    Mahesh
    Participant

    Hi @edfrancis001@,

    Its a little odd on how you get the page blank. I recommend you to make a fresh WordPress installation and install the theme and check again.

    Let me know if the issue persists.

    Regards,
    Mahesh

    in reply to: Page not found – 404 response #83298
    Mahesh
    Participant

    Hi @Lars,

    This is out of the theme support scope. For this you have to modify the author.php in child theme and put the redirect code if nothing is found i.e. replace the message code with redirect code.

    Regards,
    Mahesh

    in reply to: Smaller border/margin on mobile devices #83294
    Mahesh
    Participant

    Hi @pips,

    For the above changes, go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS:

    @media screen and ( max-width: 480px ){
    	.site{
    		width: 100%;
    	}
    }

    Regards,
    Mahesh

    in reply to: Resize Featured Content image #83293
    Mahesh
    Participant

    Hi @Wan,

    Have you made any changes to the “catchbase-featured-content” image size in the theme. Because I checked by uploading the featured image with size 1200×720 and 600×360, both produces the featured content image of 447×225.

    Please check if the following code exists in catch-base/inc/catchbase-core.php line 116.

    Regards,
    Mahesh

    in reply to: Page not found – 404 response #83230
    Mahesh
    Participant

    Hi @Lars,

    The text message being displayed is from archive.php instead of 404.php because in your site a user named “user” may exist. But there is no posts by that user. That is why when you visit http://energyfaculty.com/author/user/, the user exists which doesn’t give 404 error but cannot find any post by that user resulting displaying the not found message from archive.php.

    Regards,
    Mahesh

    in reply to: Resize Featured Content image #83228
    Mahesh
    Participant

    Hi Wan,

    The featured image is the cropped image (cropped to 400 * 225 by theme). The cropping size depends upon the image size and aspect ratio. It is recommended to use large images having aspect ratio 16:9.

    I saw you’ve modified some style so the width of featured content is a little narrower. You have CSS as below:

    #featured-content.layout-three .hentry {
    }

    which should be (by default):

    #featured-content.layout-three .hentry {
        width: 386px;
    }

    If you want to make any changes, please use child theme. Further details on creating child theme can be found HERE. It is not a good way to modify the theme core files and on every updates you’ll lose all the changes to it.

    Let me if this helps with your issue.

    Regards,
    Mahesh

    in reply to: Page not found – 404 response #83227
    Mahesh
    Participant

    Hi @Lars,

    Yes, for all not found items in the site, “Page Not Found” message will be displayed as of 404.php file. I you want the custom message for that then copy 404.php from Catch Flames Pro to child theme. Then modify the message as you desired.

    Let me know if any problems.

    Regards,
    Mahesh

Viewing 20 posts - 4,681 through 4,700 (of 4,916 total)