Forum Replies Created

Viewing 20 posts - 4,441 through 4,460 (of 14,497 total)
  • Author
    Posts
  • in reply to: Customize Demo Slider #54391
    Sakin
    Keymaster

    @PeripheralVision: You can just go to “Appearance => Customize => Featured Slider Options => Featured Slider Type”, and select “Featured Page Slider”, then select the page in Featured Page # 1, #2, #3 and so on which you want to show as slider. This will replace the demo slider.

    For more information, check out Full Frame Theme instructions at http://catchthemes.com/theme-instructions/full-frame/

    in reply to: Shortcode in promotion headline? #54389
    Sakin
    Keymaster

    @ghostzapper: It depends on the slider code for the template/php functions. So, first you need to build child theme. For Child theme, check out http://catchthemes.com/blog/create-child-theme-wordpress/

    Then you can add the following code in your child theme functions.php file. In the following replace your shortcode [huge_it_portfolio id=N] with your shortcode

    /**
     * Add Huge Slider.
     *
     * @uses action hook catchbase_before_content.
     *
     */
    function catchbase_huge_slider() {
    	echo do_shortcode([huge_it_portfolio id=N]);
    }
    add_action( 'catchbase_before_content', 'catchbase_huge_slider', 10 );
    Sakin
    Keymaster

    @nakulsachdeva: First you need to update Catch Flame Pro to latest version 2.1. For that you can download the your theme zip file from your account at http://catchthemes.com/my-account. Then install the plugin Catch Updater if you want to update from WordPress Dashboard. For more about Catch Updater and it’s instruction, check out http://catchthemes.com/wp-plugins/catch-updater/

    After you update to latest version, your can go to check this theme instructions on http://catchthemes.com/theme-instructions/full-frame-pro/#disable-header-toggle to disable header toggle.

    in reply to: Catch Responsive theme: Error 404 – page not found #54387
    Sakin
    Keymaster

    @vidhi.sam: I check in your site and it’s working. I don’t see that issue. That will show if you have set “Your latest posts” in “Appearance => Customize => Static Front Page” and don’t have any post in your site.

    in reply to: Support for 2 featured pages? #54386
    Sakin
    Keymaster

    @Aaron Giles: Ok then just add 2 Featured Page Content and then add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    #featured-content .featured-content-wrap .hentry { width: 50%; }

    Note: Please post in your site url so that I can check in what are you trying to do it.

    in reply to: Don't want "Home" to Display on Static site #54385
    Sakin
    Keymaster

    @Em Cloney: Ok to remove the menu completely. You can just go to “Appearance => Menus”, and create a new empty menu and then assign that menu to “Primary Menu” from “Appearance => Menus => Manage Locations”. If you find this complicate then alternatively you can simply add the following css in “Appearance => Theme Options => Custom CSS” box:
    #branding #access { display: none; }

    Then to add border, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    #branding { border-bottom: 2px solid #1b4266; }

    in reply to: Overlapping Menu #54384
    Sakin
    Keymaster

    @sweetacres: You can see in our demo the Slider at http://catchthemes.com/demo/catchbox/. It’s same, the only difference is that your featured image in the slider post is small. It should be at 644px width and 320px height. So, please upload the bigger image.

    But if you don’t want slider text at all then you can add in the following css in “Appearance => Theme Options => Custom CSS” box:
    #slider-wrap .featured-text { display: none; }

    in reply to: Futured Slider Option #54376
    Sakin
    Keymaster

    @Andrea: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS” box:
    #feature-slider .entry-container { display: none; }

    in reply to: Don't want "Home" to Display on Static site #54374
    Sakin
    Keymaster

    @Em Cloney: I am bit confused with your question. Can you send me your site URL so that I can check in and get better Idea of what are you trying to do it

    1. If you are trying to hide the page title Home then you can just add the following css in “Appearance => Theme Options => Custom CSS” box:
    .home .entry-header { display: none; }

    2. But if you are trying to hide home from your default page menu, then you need to add the following css in “Appearance => Theme Options => Custom CSS” box:

    .menu li { display: none; }
    .menu li.page_item { display: block; }
    in reply to: Customise, Header & Background Issue #54345
    Sakin
    Keymaster

    @Mark: Ok thanks

    in reply to: Eliminating White Space on Side and Under Graphic #54344
    Sakin
    Keymaster

    @alphaxyz: There is empty header right sidebar. So, just go to “Appearance => Customize => Theme Options => Header Right Sidebar Options” and check the option “Check to disable Header Right Sidebar” and save it.

    in reply to: Customise, Header & Background Issue #54309
    Sakin
    Keymaster

    @Mark: This is strange. It all should be adjust from “Appearance => Customize”. Can you send me more detail about it so that I can check in. If you want me to check directly in your site and check in then I will be sending you email and you can respond me there.

    Also check in your plugin list, there might be conflicting plugin. Did you try in disabling plugin one by one and check in.

    in reply to: Center BBPress Login Widget in Header #54307
    Sakin
    Keymaster

    @Omar: For that form width and all you need to play with the following css, as per your need. Adjust the width and all as per your need in various screen size and then add it in “Appearance => Theme Options => Custom CSS” box or in your child theme style.css

    #header-content .bbp-login-form { 
        display: block;
        float: none;
        margin: 0 auto;
        width: 335px;
    }
    #header-content .bbp-form { 
        display: block; 
    }
    #header-content .bbp-login-form .bbp-submit-wrapper {
        margin-right: 20px;
    }
    
    @media screen and (max-width: 1344px) {
        #header-content .bbp-login-form { width: 335px; }
    }
    @media screen and (max-width: 1280px) {
        #header-content .bbp-login-form { width: 335px; }
    }
    @media screen and (max-width: 1152px) {
        #header-content .bbp-login-form { width: 335px; }
    }
    @media screen and (max-width: 1100px) {
        #header-content .bbp-login-form { width: 335px; }
    }
    @media screen and (max-width: 1000px) {	
        #header-content .bbp-login-form { width: 335px; }
    }
    @media screen and (max-width: 940px) {
        #header-content .bbp-login-form { width: 94%; }
        #header-content .bbp-login-form .bbp-submit-wrapper { margin: 0 auto; }
    }
    Sakin
    Keymaster

    @Omar: Many of the plugin uses hook <?php wp_head(); ?> which will be there in header.php before <body> tag and hook <?php wp_footer(); ?> which will be there in footer.php after </body> tag. If you homepage template, look like it’s missing <?php wp_footer(); ?> hook for reference check out footer.php file.

    in reply to: Background color on older browsers #54303
    Sakin
    Keymaster

    @Omar: You can W3 Total Cache plugin installed. So, you need to clear your Cache from W3 Total Cache plugin settings after you make the changes. Your site has green background in all browser and devices. You are experiencing different because of cache. You can change that background color from “Appearance => Theme Options => Color Options => Site Color Options” and click on “Site Background Color”. Change it as per your need and then don’t forget to clear your cache.

    in reply to: Responsive Element still active #54302
    Sakin
    Keymaster

    @lisan955: After you remove that you browser will only show responsive element but when you check from mobile devices it shouldn’t who mobile version. It will show as there must be Responsive Style in your style.css. So, you can build child theme and don’t enqueue parent theme style.css and just copy the style.css in yoru child theme before this element

    /*--------------------------------------------------------------
    Responsive Style
    --------------------------------------------------------------*/

    So, everything after this should be deleted.

    in reply to: Search Box #54301
    Sakin
    Keymaster

    @Omar: Sorry, this is beyond the scope of Theme. We are not allowed to modify the core elements of WordPress. So, as I said previous. It falls under plugin territory. You either need to search fro plugin to modify it or you need to create child theme and customize the search searchform.php

    in reply to: Social Media Widget Alignment #54272
    Sakin
    Keymaster

    @Patrice: NICE 🙂

    in reply to: Can't change background color #54265
    Sakin
    Keymaster

    @John: Need to check in your site as it’s working fine in our test site.

    in reply to: Changing Polylang switcher widget display #54262
    Sakin
    Keymaster

    @Steve: try adding in the following css in “Appearance => Theme Options => Custom CSS” box:
    .header-sidebar .widget_polylang li { display: inline-block; }

Viewing 20 posts - 4,441 through 4,460 (of 14,497 total)