Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@teddiebozh: thanks for your appreciation ๐
Sakin
Keymaster@Ronel: From which browser in mobile you are checking in . Are you checking in Safari. Sorry it cannot be done simply with css as it’s default for input type submit in mobile devices.
but you can remove that for original bottom by adding in the following css:
input[type=submit] { -webkit-appearance: none; -webkit-border-radius: 0; }Sakin
Keymaster@Joseph: Sorry we have no control on this. This is default gallery from WordPress.
You can add the following css to make it center:
.attachment .entry-attachment { text-align: center; } .attachment .entry-attachment a { display: inline-block; margin: 0 auto; }That number below the gallery is the Caption in theme image. If you don’t want that then edit that image and remove the caption.
To remove date from attachment, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
.attachment .entry-meta { display: none; }But to remove the link to full image, you cannot do that from Custom CSS. For this you need to build child theme. Check this http://catchthemes.com/blog/create-child-theme-wordpress/ for child theme. The copy image.php in yoru child theme and edit that link.
Sakin
Keymaster@bigoslesli: I have already answered you in http://catchthemes.com/support-forum/topic/2-menus-showing/
Sakin
Keymaster@luismarioochoa:
1. If you want to hide Continue Reading… from your slider then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#slider-wrap a.more-link { display: none; }2. You cannot just add Ubuntu font family. As Ubuntu is a google font and you need to load that font first. So, just go to “Appearance => Theme Options => Font Family Options”, then select Ubuntu font. Maybe you can select for Headings Font Family. Then only you can add css as:
#slider-wrap .featured-text { font-family: 'Ubuntu', sans-serif; }3. I don’t get it what you mean. If you want to remove the excerpt from the slider then you need to remove the following css from custom css box:
#slider .slider-excerpt { clear: both; display: inline-block; }Sakin
Keymaster@bigoslesli: Yes we have donation page at http://catchthemes.com/donate. We use this donation fund for developing free version and free support.
It will be great if you support Catch Kathmandu theme by providing your review and rating at https://wordpress.org/support/view/theme-reviews/catch-kathmandu/. Thanks a lot ๐
Sakin
Keymaster@dfwrgjeff: You can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
#header-right .widget a { color: #757575; }Sakin
Keymaster@bigoslesli: Thanks for your appreciation.
Sakin
Keymaster@4iMEDIA: It should work fine. Which version are you suing it. Ok I will email you to check your server.
Sakin
Keymaster@level7tech: To change the header color you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#branding { background-color: #000; color: #ddd; } #site-title a { color: #ddd; }But if you wan your header image to stretch 100% then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#header-image img { width: 100%; }Sakin
Keymaster@Cricket: Thanks for your appreciation ๐
Sakin
Keymaster@Young: hum for that can you try adding in the following css:
#masthead .wrapper { position: relative; } .sidebar-header-right { position: absolute; right: 0; top: 0; }Sakin
Keymaster@bigoslesli: When you add in Custom Color from “Appearance => Header”. It creates color as important in both site title and description. That is why it’s not working. Can you try adding in the following css instead:
#masthead #site-description { color: #d3bf81 !important; }February 13, 2015 at 7:30 pm in reply to: Make the author link on meta go to buddypress profile #51663Sakin
Keymaster@MasterManiacs: You will find author link in various places. The main one that you need to customize in your child theme is function
catchbox_posted_on(). You can just copy this function to your child themefunctions.phpfile and edit it. You will find this function incatch-box-pro/inc/catchbox-fucntions.phpfile.Next you can change in file such as
content-single.php content-status.php content-image.php author.phpSakin
Keymaster@dawfx: Sorry I don’t get it what you mean. Can you send me your site URL and let me know the color that you want to change to. Also if you can upload screenshot in your site or any file sharing like dropbox and paste your screenshot url here. So, that I can understand better.
Sakin
Keymaster@Nicole G: Please post in appropriate support forum. This is Catch Everest Support Forum. Since, you question is general, I am going to answer it here.
Yes, the current version of Catch Evolution Free is version 2.4.1. Who said you will loose the structure of the site when you update the theme. You site will be just as it is, no need to worry about it if you have made changes in your site properly using theme options panel, widgets and menus. You can just update it.
But if you have customized any core theme files inside ‘catch-evolution-pro’ folder then you will loose that customization. As when you update the theme, it just load the original files in ‘catch-evolution-pro’ folder. You said you are newbie, so I don’t think you have customize any files inside ‘catch-evolution-pro’ folder
Sakin
Keymaster@Eduardo:
1. To disable the website field, you don’t need to change anything. Just go to “Appearance => Theme Options => Comments Options”, check in “Disable Website Field” and save it.2. Then your child theme functions.php file should be like below to add the text Este campo es opcional:
<?php /** * Catch Box Pro Child Theme functions and definitions * */ /** * Altering Comment Form Fields * @uses comment_form_default_fields filter */ function catchbox_child_comment_form_fields( $fields ) { $req = get_option( 'require_name_email' ); $aria_req = ( $req ? " aria-required='true'" : '' ); $commenter = wp_get_current_commenter(); $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="' . sprintf( esc_attr__( '%s', 'catchbox' ), $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' /><span class="email-optional">Este campo es opcional</span></p>'; return $fields; } add_filter( 'comment_form_default_fields', 'catchbox_child_comment_form_fields', 30 );Sakin
Keymaster@Camel1021: Just change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
#colophon { border-color: #1b5f7d; } -
AuthorPosts
