Forum Replies Created

Viewing 20 posts - 8,681 through 8,700 (of 14,504 total)
  • Author
    Posts
  • in reply to: Swedish translation #20558
    Sakin
    Keymaster

    @AFPhoto: It’s similar but not the same. So, you can copy the catch box theme .mo and .po files and use poedit.net software and do the missing translation. Then you can send me the language file and I will add that in the core theme files.

    in reply to: Featured Slider shifting #20557
    Sakin
    Keymaster

    @Kenneth: Great I see that all is working fine now. If you upload the image larger then 644×320 then it will automatically crop into 644×320 but if that is smaller then it will just load the original small image.

    Sorry don’t know about the editor in WordPress. You might need to check out plugins.

    in reply to: Tag cloud in widget #20548
    Sakin
    Keymaster
    in reply to: Tag cloud in widget #20546
    Sakin
    Keymaster

    @Joaozinho: It comes when you add tags to your post. See this http://en.support.wordpress.com/posts/tags/

    in reply to: Featured Content Titles gone? #20542
    Sakin
    Keymaster

    @aeriformarts: You title got disappear as your have added the following CSS in “Appearance => Theme Options => Custom CSS” box. Just remove it.
    .page .entry-header { display: none; }

    in reply to: changing header image size #20540
    Sakin
    Keymaster

    @danzl: I cannot look at you site. It’s not yet live. In Catch Box theme you can upload header image without cropping. There is ways to do that.
    1. Go to “Appearance => Header”
    2. Then click on “Browse”, select the image and upload it
    3. Then you will get “Crop Header Image” box, in this section you can use your mouse/trackpad to select the entire image and click on “Crop and Publish”.
    In this way you are cropping whole image and not just a small portion of it.

    If you have still confusion then you can see the screenshot at http://www.pinterest.com/pin/548594798331307420/

    in reply to: video sizes? #20539
    Sakin
    Keymaster

    @aeriformarts: This depends on your video in youtube. I see that you have lot of videos in Portrait view. You can just add all landscape video like the Video1. Then it will be fine.

    About the Video gallery, you are controlling columns through plugin were you are using 3 columns shortcode. Just use 2 columns layout from the plugin and it will be fine. For more about this columns you need to ask support forum of that plugin.

    in reply to: footer menu #20533
    Sakin
    Keymaster

    @aroma-bobman: Sorry Bob, I was looking at upcoming version and I just check in the stable version 1.6 and yes we don’t have footer menu option live yet. Will be releasing the update soon. So, sorry you have to wait.

    in reply to: Change font color in Header? #20530
    Sakin
    Keymaster

    @leparaplui3: Thanks for your appreciation 🙂

    in reply to: Responsive header image #20529
    Sakin
    Keymaster

    @Matthew: I see there is issue in your CSS in “Appearance => Theme Options => Custom CSS box”. You custom css is totally messes up with mixed css starting from @media screen and (min-width: 961px) {. So first, delete all the custom css and add one by one what you need. Also looking at theme design you need to disable responsive design. You need to check all your closing brackets }

    in reply to: spacing below featured content #20526
    Sakin
    Keymaster

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

    .home #content .hentry {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    in reply to: Featured items – centering #20525
    Sakin
    Keymaster

    @Lea: Actually your Homepage Featured content image are smaller in width and so you have issues. If you want to center the image then you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #featured-post .wp-post-image {
        display: block;
        margin: 0 auto;
    }

    You can center the titles in your footer widget by add the following css in “Appearance => Theme Options => Custom CSS” box.

    #footer-sidebar .widget-title {
        text-align: center;
    }
    in reply to: Slider and optional widget? #20524
    Sakin
    Keymaster

    @Lea: I see that you are using Catch Everest theme which doesn’t have that option. It only have full width slider. You might want to look at Catch Evolution Pro (http://catchthemes.com/themes/catch-evolution-pro/) or Catch Box Pro (http://catchthemes.com/themes/catch-box-pro/) theme for content width slider. Then you can add image in your sidebar.

    in reply to: Google authorship #20522
    Sakin
    Keymaster

    @MMchen: Sorry but you are not supposed to change any core theme files directly. If you want to change header.php then you can just build child theme and then copy header.php from Catch Box theme to your child theme and then edit there. This way when you update the parent theme, your child theme file will not be changed.

    Also I see that you have added google code directly which is not right method to do it. I see that you have install WordPress SEO plugin by Yoast. So, you can just add it from there. Go to “SEO => Social => Google+” from your WordPress dashboard and add utl URL.

    in reply to: Would like to add category.php and tag.php #20521
    Sakin
    Keymaster

    @rekkette: that’s great. 🙂

    in reply to: Missing required field “updated” #20520
    Sakin
    Keymaster

    @MMchen: Cool.. Cheers 🙂

    in reply to: footer menu #20519
    Sakin
    Keymaster

    @aroma-bobman: Bob you have added menu in your “Footer Area One” from “Appearance => Widgets” that is why it is showing like that. But if you want to show it like your header menu. Then you need to go to “Appearance => Menus ” Manage Locations”. Then assign you menu in “Footer Menu” theme location.

    in reply to: Cusomize Comment Box #20515
    Sakin
    Keymaster

    @Black_Bird: That is default WordPress comment form and to remove the URL/website field in contact form, you need to first build child theme of Catch Evolution theme and then create functions.php file and add the following code.

    <?php
    /**
     * Altering Comment Form Fields
     * @uses comment_form_default_fields filter
     */
    function catchevolution_comment_form_fields( $fields ) {
    	unset($fields['url']);
    	$req = get_option( 'require_name_email' );
    	$aria_req = ( $req ? " aria-required='true'" : '' );
    	$commenter = wp_get_current_commenter();
        $fields['author'] = '<p class="comment-form-author"><label for="author">' . esc_attr__( 'Name', 'catchevolution' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) .
            '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></p>';
        $fields['email'] = '<p class="comment-form-email"><label for="email">' . esc_attr__( 'Email', 'catchbox' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) .
            '<input id="email" name="email" type="text" value="' . esc_attr(  $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' /></p>'; 
        return $fields;
    	
    }//catchevolution_comment_form_fields
    in reply to: Change font color in Header? #20502
    Sakin
    Keymaster

    @leparaplui3: What are you trying to change i? If you are trying to change Site Title color then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    h1#site-title a { color: #fff; }

    in reply to: footer menu #20499
    Sakin
    Keymaster

    @aroma-bobman: Can you post your site URL? I am bit confused as the Footer Menu is design to display horizontal like the header main menu. Are you adding menu through Widgets or through Menus.

Viewing 20 posts - 8,681 through 8,700 (of 14,504 total)