Forum Replies Created

Viewing 20 posts - 14,101 through 14,120 (of 14,332 total)
  • Author
    Posts
  • in reply to: Problem in IE #2374
    Sakin
    Keymaster

    @chochonet: I have contacted you thorough email and send you the patched theme. The actual problem was in spanish translation of theme which will be fixed in version 1.6.1.

    In the file es_ES.po there was space in closing of span tag.

    in reply to: Transparent header image #2372
    Sakin
    Keymaster

    @alukaszewicz:You can make the header and page background transparent. Delete the previous css and add the following

    #page, #branding {
    background: none transparent;
    }

    in reply to: Transparent header image #2371
    Sakin
    Keymaster

    @alukaszewicz: transparent background always takes the background of the parent. So, I don’t get is no color at all. It will take one or the other color is made transparent.

    So, add in the final image and then call for css. We will help you. Also if possible send the image of the design that you want to change in the site. So, that we can know what exactly you want to do with your transparent image.

    in reply to: Transparent header image #2368
    Sakin
    Keymaster

    @alukaszewicz: Sorry I gave you the css to change the text color. So , remove the old css and add this one.

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

    #branding {
    background-color: #c9e17d;
    }

    But if you want to change the background color to background image then check this:
    http://www.w3schools.com/cssref/pr_background-image.asp

    in reply to: Link Color Not Applying to Theme #2359
    Sakin
    Keymaster
    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.

Viewing 20 posts - 14,101 through 14,120 (of 14,332 total)