Forum Replies Created
-
AuthorPosts
-
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.
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.
Sakin
KeymasterYes you are right. See this http://en.support.wordpress.com/widgets/tag-cloud-widget/
Sakin
Keymaster@Joaozinho: It comes when you add tags to your post. See this http://en.support.wordpress.com/posts/tags/
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; }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/
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.
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.
Sakin
Keymaster@leparaplui3: Thanks for your appreciation 🙂
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}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; }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; }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.
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.
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.
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_fieldsSakin
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; }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.
-
AuthorPosts
