Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@justinillig: As per your menu, the following setting will work best. Just add the following css in “Appearance => Theme Options => Custom CSS” box:
.sb-holder { background-color: #e2c8ca; font-family: Bitter,sans-serif; font-weight: bold; text-transform: uppercase; } .sb-selector:link, .sb-selector:visited, .sb-selector:hover { color: #fff; text-shadow: none; } .sb-options { background-color: #fff; } .sb-options a, .sb-options a:link, .sb-options a:visited { color: #6b6b6b; font-weight: bold; } .sb-options a:hover, .sb-options a:focus, .sb-options a.sb-focus { background-color: #e2c8ca; color: #fff }Sakin
Keymaster@PrimoFamilia: To move the featured content, you can just go to “Appearance => Customize => Featured Content Options => Featured Content Settings” and check option “Check to Move above Footer”.
April 13, 2015 at 7:45 pm in reply to: How do i move facebook comments box below my traditional theme comments? #55673Sakin
Keymaster@meekglorious: This depends on the plugin you have added in. You code should be added below
comments_template()that you will find insimplecatch_content()function. But there should be option in your plugin.Sakin
Keymaster@Helle Naia: You can try adding in the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#logo-icon { float: right; }April 13, 2015 at 7:30 pm in reply to: Error in Hello World post with fresh installed WordPress and Theme #55670Sakin
Keymaster@Jürgen: Thanks 🙂
Sakin
Keymaster@Steven: This is strange. I check in both Simple Catch and Simple Catch Pro theme, both have same navigation, that is Previous and Next. I don’t know how you got it Older Posts and Newer Posts in Simple Catch Theme. Both the theme uses same function
simplecatch_content_nav()for that.If you want to edit that then you need to build child theme. You can also download sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/ and then copy function
simplecatch_content_nav()fromsimplecatch_functions.phpfile in Simple Catch Pro theme. Then add that in your child themefunctions.phpfile.Then replace the following code:
<ul class="default-wp-page clearfix"> <li class="previous"><?php next_posts_link( __( 'Previous', 'simplecatch' ) ); ?></li> <li class="next"><?php previous_posts_link( __( 'Next', 'simplecatch' ) ); ?></li> </ul>With the code as below:
<ul class="default-wp-page clearfix"> <li class="previous"><?php next_posts_link( __( 'Older Posts', 'simplecatch' ) ); ?></li> <li class="next"><?php previous_posts_link( __( 'Newer Posts', 'simplecatch' ) ); ?></li> </ul>Sakin
Keymaster@Dona: If you cannot make it as background then you can make that image width 20% always. Like adding in the following css in “Appearance => Theme Options => Custom CSS” box:
.page-id-85 .wp-image-73 { width: 20%; }Sakin
Keymaster@jblack6572: I check in your site and see that you have custom css in two places. One from our theme “Appearance => Theme Options => Custom CSS” and another from other plugin. Can you check in if you have Jetpack plugin custom css enabled or any other plugin doing that . The following css is not from our custom css, which is causing issue.
@media screen and (max-width: 1280px){.header-sidebar .widget ul.menu a{padding:0 10px}#hgroup-wrap img{max-width:300px}}@media screen and (max-width: 1152px){#hgroup-wrap img{max-width:200px}}.site{margin-top:0}Sakin
Keymaster@borgny.hovland: Yes, you can upgrade to Simple Catch Pro and you will not loose your blog and content. There will only be few design elements additional and also lot of additional features that you can use. For more about Simple Catch Pro theme you can check out theme instructions page at http://catchthemes.com/theme-instructions/simple-catch-pro/
Sakin
Keymaster@gregwostrel_creates: For that you can either build child theme and do custom links or you need simply upgrade to Catch Responsive Pro where you have option to choose Slider Type as “Featured Image Slider”, where you can upload your image, link and everything as per your need. Fore more you can check out theme instructions of Catch Responsive Pro at http://catchthemes.com/theme-instructions/catch-responsive-pro/
Sakin
Keymaster@Dona: That is because of your large image. You should be adding that image as background not as long large image.
Sakin
Keymaster@kazcchi: Ok you can add the following css in “Appearance => Theme Options => Custom CSS” box:
.hentry, .no-results, #content .error404 { background-color: transparent; }April 12, 2015 at 8:53 am in reply to: Error in Hello World post with fresh installed WordPress and Theme #55606Sakin
Keymaster@Jürgen: Ok will need to check in detail. Thanks for your report.
Sakin
Keymaster@allison: Thanks for your appreciation and if you like Catch Box theme and support than you can help us by providing valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-box?rate=5#postform
Sakin
Keymaster@Guillaume: You shouldn’t edit any core theme files like style.css, index.php, functions.php and so on, inside ‘catch-kathmandu-pro’ theme directory. As these files will be reverted back to original when you update your theme.
So, to edit css, you can either add it in “Appearance => Theme Options => Custom CSS” box or build child theme and add it in child theme style.css
So, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#primary { width: 750px; } #secondary { width: 380px; } @media screen and (max-width: 1344px) { #primary { width: 700px; } #secondary { width: 380px; } } @media screen and (max-width: 1280px) { #primary { width: 620px; } #secondary { width: 360px; } } @media screen and (max-width: 1152px) { #primary { width: 540px; } #secondary { width: 340px; } } @media screen and (max-width: 1024px) { #primary { width: 480px; } #secondary { width: 340px; } } @media screen and (max-width: 960px) { #primary, #secondary { width: 100%; } }Sakin
Keymaster@Kim: Ok add the following css in “Appearance => Theme Options => Custom CSS” box:
.blog #content .hentry,.archive #content .hentry { padding-top: 0; }Sakin
Keymaster@oleymedia: Ok then just upload featured image of square 190px by 190px then it will load square. I has to be less than Width: 350px and Height: 197px as your featured image that it will load the image that you have uploaded.
Sakin
Keymaster@allison: Actually your custom css should be as below:
@media screen and (min-width: 961px) { .right-sidebar #primary { width: 72%; } .right-sidebar #secondary { width: 25%; } } -
AuthorPosts
