Forum Replies Created

Viewing 20 posts - 14,261 through 14,280 (of 14,487 total)
  • Author
    Posts
  • in reply to: Header and Footer #2358
    Sakin
    Keymaster

    @BeSt: I haven’t seen your footer but for http://www.undeadstooge.com/. If you want to make the footer fixed at the bottom.

    #main {
    padding-bottom: 90px;
    }
    #colophon {
    bottom: 0;
    position: fixed;
    width: 100%;
    }

    in reply to: Woocommerce #2354
    Sakin
    Keymaster

    @msintenie: Please copy and paste it carefully. there is problem with ‘. I have given you the clear idea of how to build it. If you are not being able to create the function.php in child theme with the code then please use our “Hire A customizer” http://catchthemes.com/hire-customizer/

    in reply to: Problem in IE #2353
    Sakin
    Keymaster

    @chochonet: can you update your theme to version 1.6 and refresh your browser and check it. If you still have problem then contact me through http://catchthemes.com/hire-customizer/ with your WordPress access and I look in details.

    in reply to: Transparent header image #2352
    Sakin
    Keymaster

    @alukaszewicz: There is background color white (#fff) define in header id branding that is why it is taking background white. Now you change that background color to match with the main background.

    Go to “Appearance -> Theme Options -> Custom CSS” box in your WordPress dashboard and add the following css:

    #branding {
    color: #c9e17d;
    }


    @ronmerk
    : nice site and thanks a lot for your support.

    in reply to: Transparent header image #2341
    Sakin
    Keymaster

    @alukaszewicz: You are using the jpg image (http://www.gettingstamped.com/wp-content/uploads/2012/12/header_sketch3-copy.jpg) which is not transparent image. To create transparent image from the photoshop it needs to be .png image.

    in reply to: Catch Box on mobile devices #2340
    Sakin
    Keymaster

    @thetwosents: yes the same logo will be used in your mobile device. It will adjust the size accordingly.

    in reply to: Woocommerce #2339
    Sakin
    Keymaster

    @msintenie: for function.php don’t copy [php] and [/php]. Just cope the code in between.

    in reply to: remove comment box on front page of site #2327
    Sakin
    Keymaster

    @rozandueta: You can disable the comment in your page while you edit the page or create the page. See this for more http://en.support.wordpress.com/enable-disable-comments/

    in reply to: Search Box #2324
    Sakin
    Keymaster

    @Anusha: you can actually disable comment in each page and post. See this http://en.support.wordpress.com/enable-disable-comments/

    in reply to: Search Box #2320
    Sakin
    Keymaster

    @Anusha: can you send me your site url?

    in reply to: Website is Intermittently Glitchy in IE #2316
    Sakin
    Keymaster

    @Gary: welcome anytime. thanks.

    in reply to: Problems with I. Explorer #2308
    Sakin
    Keymaster

    @Palel: Sorry for that. Let me know if I can help you with.

    in reply to: Theme Logo in Window Tab #2307
    Sakin
    Keymaster

    @UndeadStooge: I think you are talking about removing or changing favicon. To do that go to “Theme Options -> Theme Options -> Fav Icon Options” in your WordPress Dashboard and change the image or disable it.

    in reply to: Woocommerce #2306
    Sakin
    Keymaster

    @msintenie: Simple Catch Pro theme is not ready for WooCommerce. But you can build a child theme

    Crate a new child theme where you can create two files: style.css and functions.php

    style.css code as below:

    /*
    Theme Name: Simple Catch Pro WooCommerce
    Theme URI: http://catchthemes.com/themes/simple-catch-pro/
    Description: Child theme for the Simple Catch Pro to suppor WooCommerce Plugin
    Author: Catch Themes
    Author URI: http://catchthemes.com/
    Template: simple-catch-pro
    */
    @import url("../simple-catch-pro/style.css");

    functions.php code as below:

    <?php
    /**
    * Adding support for WooCommerce Plugin
    *
    * uses remove_action to remove the WooCommerce Wrapper and add_action to add Simple Catch Wrapper
    *
    */
    remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);

    remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);

    add_action('woocommerce_before_main_content', 'simplecatch_child_woocommerce_start', 15);

    function simplecatch_child_woocommerce_start() {
    echo '<section class="page woocommerce">';
    }

    add_action('woocommerce_after_main_content', 'simplecatch_child_woocommerce_end', 15);

    function simplecatch_child_woocommerce_end() {
    echo '</section></div>';
    }

    in reply to: Catch Box on mobile devices #2304
    Sakin
    Keymaster

    @vaskrupp: Yes that’s a good approach. As our theme is always being updated with latest patches and new features.

    in reply to: functions.php #2303
    Sakin
    Keymaster

    @KeighDesign: thanks and it’s great that the plugin helped you.

    in reply to: Problems with I. Explorer #2302
    Sakin
    Keymaster

    @Palel: my site was fixed after I clear by cache. can you try check in my clearing your cache. Let me know it.

    in reply to: Website is Intermittently Glitchy in IE #2301
    Sakin
    Keymaster

    @Gary: You are using WP-Super-Cache. Did you try clearing in the cache? My site was fixed automatically after I clear my cache.

    in reply to: Content Color Options doesn't work #2291
    Sakin
    Keymaster

    @Elisabetta: Thanks for reporting the issue. I found that there is conflict between the “Content Color Options” and “Custom CSS”. I have fixed it for you which will be updated in our new version 1.6

    in reply to: Content Color Options doesn't work #2276
    Sakin
    Keymaster

    @Elisabetta: You can contact me from there and I will get your email and will reply you to get your access.

Viewing 20 posts - 14,261 through 14,280 (of 14,487 total)