Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Bas: Thanks nice and thanks for sharing but be careful as that plugin is outdated and have not been updated over 2 years.
Sakin
Keymaster@alexmo: You can reduce the padding-top as per you need in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
#main { padding-top: 50px; }Sakin
Keymaster@Raphael: Sorry I don’t get it what you mean. Can you explain in reference with your site URL so that I can check in and suggest you the solution.
Sakin
Keymaster@andriansah: Sorry we only support theme developed by us that is Catch Themes. You are not using our theme.
Sakin
Keymaster@baj7783: Check this screenshot http://www.pinterest.com/pin/548594798331986216/. Before your click on “Insert Into Post”, make sure “Link URL” is not empty. Sometime, it’s empty. If it’s empty then click on “File URL” and “Full Size”, then you will see your logo image link and then click on “Insert Into Post”.
Sakin
Keymaster@j17dascoli: Sorry there is no option to add in social links from Footer Editor. You can add it in different widgets area from “Appearance => Widgets”. Did you try adding in “Footer Area One”.
But if you really want to add in the social icons in the footer site info area then you need to build child theme. Read this http://catchthemes.com/blog/create-child-theme-wordpress/, you can also download sample child theme from here then you can add the following code in your child theme functions.php file
// Adding Social Icons in site generator area add_action( 'catchkathmandu_site_generator', 'catchkathmandu_social_networks', 5 );January 10, 2015 at 1:02 am in reply to: How do I change default Image sizes in Blog listings? #49840Sakin
Keymaster@Consciousness: In Catch Evolution theme, then recommended size for Featured Image in post is Width: 754px and Height: 400px. So, all the image uploaded at this size or larger then this size will be automatically crop to this size. In your case, you want smaller image, then just upload the image smaller then height 400px and it will load your original small image that you have uploaded.
Sakin
Keymaster@John U: Either you need to remove import from your child theme style.css or remove wp_enqueue_style() from your child theme functions.php file. It’s not good to keep it both.
Sakin
Keymaster@lorencowka: Again this can be done by installing plugin like “Sociable” or another.
Sakin
Keymaster@alexmo: Thanks for sharing. There is correction in Custom CSS for your site. So, replace the custom css:
#form-allowed-tags { display: none; }With the following css:
#respond .form-allowed-tags { display: none; }January 8, 2015 at 5:25 pm in reply to: Can't link Featured Post Slider images to certain url #49783Sakin
Keymaster@amandamarie0808: I see that you are using Catch Kathmandu Free theme. Which only have option to use “Post Slider or Category Slider”, these two slider are created to highlight your post in the slider. It takes your post title, excerpt and featured image and will link to post.
To change that to page, you need to Page Slider and to link to any pages/custom URL then you need to use Featured Image Slider. But the option to use Page or Image slider is only there in Catch Kathmandu Pro version. So, your solution will be to upgrade to pro version.
Sakin
Keymaster@Shawn: I don’t see any issue. Which version of IE and Firefox are you using it. Can you upload screenshot in your site or any photo-sharing site and send me the link to screenshot. Then I can check in more.
Sakin
Keymaster@Jonathan: It’s because you have following css in your custom css box:
#header-content { display: none; }Also I don’t understand why you added in the following css:
@media screen and (min-width: 961px) { }Remove both the css and then you will get menu back. Further, if you don’t like header in the desktop version then you then you can add the following css instead.
#logo-wrap, #sidebar-header-right { display: none; } @media screen and (min-width: 981px) { #header-content { padding: 0; } }Sakin
Keymaster@Epheistos: For minimal style changes, then you can use Custom CSS box at “Appearance => Theme Options => Custom CSS” box. You need to build child theme only when you need advance customization of styles and functions.
You can simply change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
//Border Color #branding ul.menu li border-color: 1b4266; } //Menu background and text color #branding #access, #branding ul.menu ul a { background: none #1b4266; color: #fff; } //Menu Hover background and text color #branding ul.menu li:hover > a, #branding ul.menu a:focus { background: none #286298; color: #fff; }Sakin
Keymaster@paul: Do you mean that you just want to hide your menu in your homepage and show it in all other pages then you can add in the following css in “Appearance => Theme Options => Custom CSS” box:
.home #access { display: none; }Sakin
Keymaster@Kevin: Sorry I don’t know which shortcode are you using it. Are you using any plugin for MP3s.
Sakin
Keymaster@John U: Other CSS are automatically added and the parent style.css is imported in style.css of child theme. You will see the following CSS in your child theme style.css
/* =Import Adventurous Pro CSS -------------------------------------------------------------- */ @import url("../adventurous-pro/style.css");So, you don’t need to add adventurous-pro_enqueue_scripts_styles() function in your child theme functions.php file. Also in your //remove default secondary menu, you have done add_action and it should be as remove_action. Your child theme functions.php file should be as.
Sakin
Keymaster@lsdinc: Yes, there are additional options in Pro version as Pro version is advance version of Free one. See more details about additional features and instructions for pro version at http://catchthemes.com/theme-instructions/catch-evolution-pro/
-
AuthorPosts
