Catch Themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Simple Catch] [Theme: Simple Catch] Version UpdateSimple Catch Version 1.4.9.1 is out now for download.
http://wordpress.org/extend/themes/download/simple-catch.1.4.9.1.zip
Change Log:
* Fixed CSS Pagination with WP-PageNavi and WP Page Numbers Plugins
* Fixed CSS for default textareaForum: Themes and Templates
In reply to: Catch Box Theme- how do you change the size of header imageHi Nailah,
You can check this http://en.support.wordpress.com/themes/custom-header-image/ . It’s just using your mouse to crop the image of the size you want.
Forum: Themes and Templates
In reply to: Catch Box Theme- how do you change the size of header image@yorgo67: After you upload the image. You need to crop the portion you want. If you just do the save then it will crop it down to 300×100. That is why you need to select the full portion of the image that you’d like to use for the header, then click Crop and Publish.
Forum: Themes and Templates
In reply to: [Catch Box] v1.5.4 breaks single column@rafdizzle86: You don’t need to do that as if you have selected the disable sidebar. There shouldn’t be sidebar. So, the code in sidebar.php will be as following:
<?php /** * The Sidebar containing the main widget area. * * @package Catch Themes * @subpackage Catch_Box * @since Catch Box 1.0 */ $options = catchbox_get_theme_options(); $layout = $options['theme_layout']; if ( $layout == 'content-onecolumn' || is_page_template( 'page-disable-sidebar.php' ) || is_page_template( 'page-fullwidth.php' ) ) : return false; else : ?> <div id="secondary" class="widget-area" role="complementary"> <?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?> <aside id="archives" class="widget"> <h3 class="widget-title"><?php _e( 'Archives', 'catchbox' ); ?></h3> <div class="widget-content"> <ul> <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?> </ul> </div> </aside> <aside id="meta" class="widget"> <h3 class="widget-title"><?php _e( 'Meta', 'catchbox' ); ?></h3> <div class="widget-content"> <ul> <?php wp_register(); ?> <li><?php wp_loginout(); ?></li> <?php wp_meta(); ?> </ul> </div> </aside> <?php endif; // end sidebar widget area ?> </div><!-- #secondary .widget-area --> <?php endif; ?>Forum: Themes and Templates
In reply to: [Catch Box] v1.5.4 breaks single column@rafdizzle86: when you select “One-Column, no sidebar”. It shouldn’t show the sidebar. But I couldn’t recreate the bug you found with widget. So, can you give a try by replacing your sidebar.php with http://themes.svn.wordpress.org/catch-box/1.5.5.1/sidebar.php
Forum: Themes and Templates
In reply to: [Catch Box] v1.5.4 breaks single column@rafdizzle86: I see that you have selected “One-column, no sidebar” in Theme Option. This option is for all post and pages. But I see that in page “http://www.rafilabs.com/contact-me/” you have selected the custom template “Full Width Disable Sidebar Template”. Now in these pages you just select the “Default Template”. Then the post and paged will have same design.
Forum: Themes and Templates
In reply to: [Catch Box] v1.5.4 breaks single column@rafdizzle86: can you send me screenshot or send me your site URL.
Forum: Themes and Templates
In reply to: [Catch Box] Catch Box Theme Translation@pkunzip: Can you contact us through http://catchthemes.com/contact-us/ and then we will follow up. Thanks a lot in advance.
Forum: Themes and Templates
In reply to: [Simple Catch] [Theme: Simple Catch] Version UpdateSimple Catch Version 1.4.9 is out now for download.
http://wordpress.org/extend/themes/download/simple-catch.1.4.9.zip
Change Log:
* * Improving Theme Options data validationForum: Themes and Templates
In reply to: [Catch Box] [Theme: Catch Box] Version UpdateChange Log for 1.5.5 is as below:
* Fixed body_class filter loop for layout issue found in version 1.5.4
* Fixed CSS for Content on Right Layout@jonatanb: I see that you have updated the theme and seems to work fine or are you still having problem?
Forum: Themes and Templates
In reply to: [Catch Box] v1.5.4 breaks single columnPlease update to Version 1.5.5 and it will be fine.
Forum: Themes and Templates
In reply to: [Catch Box] How to make sidebar width smaller@bmxer193: You can use the css to change the width size. You ca just add the css in the “Custom Css” box in your Theme Options:
Sidebar width is currently defined as:
#secondary { width: 31.5%; }Forum: Themes and Templates
In reply to: [Catch Box] Secondary Menu not visible on the iphone@cqwww: This theme doesn’t support secondary menu in iphone and smaller devices. We have noted down about this feature.
Forum: Themes and Templates
In reply to: [Simple Catch] [Theme: Simple Catch] How to remove page title?@rebecca-g: You can just add the following css below your current css in Theme Options.
.home .entry-title { display: none; }