Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Andrew: Sorry I don’t understand it. Can you show me your URL and explain in reference with that URL so that I can check in.
Sakin
Keymaster@bobgarrett: Can you post in your site URL so that I can check in and also if you can upload screenshot of issue in your site or any photo-sharing site and send me the link of screenshot.
Sakin
Keymaster@lsdinc: Yes, you can upload the image size of 1600×200. There is no restriction on this. Just go to “Appearance => Theme Options => Header Featured Image Options” and upload it.
For content widget in post, I don’t recommend it as it is balance as per the screensize.
Sakin
Keymaster@alexmo: The CSS you have added in has space in-between # and form-allowed-tags. There shouldn’t be any space in-between. So, copy the css as below. I have tested in Catch Kathmandu Theme and it works fine.
#form-allowed-tags { display: none; }January 6, 2015 at 9:50 pm in reply to: Custom Header: Logo & Site Details: You do not have sufficient permissions #49647Sakin
Keymaster@arun: Check your upload folder permission. In Catch Everest theme, you can upload the logo image from “Appearance => Header”
Then to make your site title to appear next to your logo, you need to add the following css in “Appearance => Theme Options => Custom CSS” box:
#hgroup.with-logo { clear: none; float: left; padding-left: 10px; }Sakin
Keymaster@glenda: Post in your site URL and will see if there is anything I can do it.
Sakin
Keymaster@alexmo: I don’t get it what you mean and why you cannot add it. You can just add that CSS in Custom CSS Box.
Another option is to build child theme and remove that code. For child theme read this http://catchthemes.com/blog/create-child-theme-wordpress/ and then in your child theme functions.php file you can add the following code:
/** * Modify Comment Form Defaults */ function catchkathmandu_comment_defaults( $defaults ) { $defaults['comment_notes_after'] = ''; return $defaults; } add_filter( 'comment_form_defaults', 'catchkathmandu_comment_defaults' );Sakin
Keymaster@Riccardo: I have already replied you in http://catchthemes.com/support-forum/topic/selectively-displaying-the-homepage-featured-content/
Please don’t post same question in 2 places. It will be difficult for us to manage.
Sakin
Keymaster@Lisa: I am the Founder/Lead developer of Catch Themes and thanks for your appreciation. You can help us back by providing good review and rating at our Catch Kathmandu them in WordPress theme repo https://wordpress.org/support/view/theme-reviews/catch-kathmandu
Sakin
KeymasterFor whole header it will be as below:
.page-id-1234 #branding, .page-id-1218 #branding, .page-id-959 #branding { display: none; }Sakin
Keymaster
@Lisa: There no option to do that from Theme Options panel. This is high level of customization and required you to build child theme. So, read this http://catchthemes.com/blog/create-child-theme-wordpress/ and build child theme and then copy the following code in your child theme functions.php file.// Removing the Default Action Hook function unhook_catchkathmandu_functions() { remove_action( 'catchkathmandu_before_main', 'catchkathmandu_slider_display', 10 ); remove_action( 'catchkathmandu_after_hgroup_wrap', 'catchkathmandu_secondary_menu', 10 ); } add_action( 'init', 'unhook_catchkathmandu_functions' ); add_action( 'catchkathmandu_after_hgroup_wrap', 'catchkathmandu_slider_display', 10 ); add_action( 'catchkathmandu_after_hgroup_wrap', 'catchkathmandu_secondary_menu', 15 );Sakin
Keymaster@Andrew: You can add the following css in “Appearance => Theme Options => Custom CSS” box:
.page-id-1234 #branding #access, .page-id-1218 #branding #access, .page-id-959 #branding #access { display: none; }Sakin
Keymaster@Nijn: Actually we don’t recommend you to change that. But if you want to change that then send me your site URL and the Menu text for which you want to change to.
January 6, 2015 at 8:13 pm in reply to: Social Media links shows up as bullets instead of icons #49633Sakin
Keymaster@Mogens: Yes, I check in your site and see that you have customize the core css file style.css. You shouldn’t edit/add any files inside core theme directory ‘catch-evolution-pro’. If you need to edit or add any extra css then you can either add it in “Appearance => Theme Options => Custom CSS” box or build child theme and add it in your child theme style.css. For child theme read http://catchthemes.com/blog/create-child-theme-wordpress/
So, please restore the original theme and then add customization as per the instruction. What is see in your cutomized style.css. There is missing closing bracket in
#slider-wrap .featured-text .featured-text-wrap .slider-title { font-weight: bold;It should be as
#slider-wrap .featured-text .featured-text-wrap .slider-title { font-weight: bold; }Sakin
Keymaster@level7tech: To hide the leave a reply in your post header. You can add the following css in “Appearance => Theme Options => Custom CSS” box”
.entry-header .comments-link { display: none; }About the way the comment works, it’s from WordPress and we don’t have anything to do with it. If you don’t like this then you might want to search for comment plugin like Disqus, Jetpack comment and so on.
Sakin
Keymaster@Riccardo: It’s because of your child theme. You haven’t build child theme properly. I check in your child theme style.css and see that you have copied all CSS from parent theme to child theme. This is not the way to do it. You should import the parent theme css and then add in your css below. You can read and download the sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/
Sakin
Keymaster@Riccardo: Try adding in the following css in “Appearance => Theme Options => Custom CSS” box to hide featured content for user not loggedin.
#featured-post { display: none; } .logged-in #featured-post { display: block; }January 5, 2015 at 11:29 pm in reply to: responsive design submenu/drop down background color change #49597Sakin
Keymaster@paul: Thanks, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#header-menu .sb-options { background-color: #000464; } @media screen and (max-width: 960px) { #main-slider { display: none; } } -
AuthorPosts
