Catch Themes
Forum Replies Created
-
You can hide that through custom css. This will be better. Send me your Site URL and then I will send you the CSS.
You can add the following css in “Custom CSS” box in Theme Options under appearance tab in your WordPress dashboard:
.copyright { text-align: right; }Build a child theme and add the following code in your function.php file:
/** * Fixing the Number of Post * Used in Homepage */ function simplecatch_home_custom_query( $query ) { if ( is_home() ) $query->query_vars['posts_per_page'] = 3; // Change 3 to the number of posts you would like to show return $query; // Return our modified query variables } add_filter( 'pre_get_posts', 'simplecatch_home_custom_query' ); // Hook our custom function onto the request filterRegards,
SakinForum: Themes and Templates
In reply to: [Catch Box] [Theme: Catch Box] Slider and the excerpt text@andre: The question you have asked me is more of customization. So you might considering Hiring a Customizer.
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Issues with WP 3.4.2I also got same, my admin section went blank and then I had to uninstall the plugin to get my admin section back. Any solution then let me know. I want to use this plugin.
Forum: Themes and Templates
In reply to: [Catch Box] [Theme: Catch Box] Slider and the excerpt textHi, for this you need to do customization on the function catchbox_sliders() and build child theme. But for this you need to know detail about WordPress functions.
Forum: Themes and Templates
In reply to: [Catch Box] [Theme: Catch Box] So… What's new on 1.5.1?Check this http://wordpress.org/support/topic/theme-catch-box-version-update or you can check the readme.txt in your theme.
Forum: Themes and Templates
In reply to: [Catch Box] [Theme: Catch Box] Version UpdateCatch Box Version 1.5.1 is out now for download.
http://wordpress.org/extend/themes/download/catch-box.1.5.1.zip
Change Log for 1.5.1 is as below:
* Fixed css for Content on Right LayoutForum: Themes and Templates
In reply to: [Simple Catch] [Theme: Simple Catch] Version UpdateSimple Catch Version 1.4.5 is out now for download.
http://wordpress.org/extend/themes/download/simple-catch.1.4.5.zip
Change Log:
Version 1.4.4 and Version 1.4.5
* Update the Add Image Script
* Fixed layout issue with the attachments
* Fixed Theme Option issue with Facebook and Twitter LikeForum: Fixing WordPress
In reply to: [Simple Catch] [Theme: Simple Catch] Bullet Point StyleLet me know how do want to ti look like. You can use the “Custom CSS” box in Theme Option under Appearance Tab in your WordPress Dashboard.
For example you can use the following css:
#content ul { list-style: disc outside none; }For more see this
Forum: Themes and Templates
In reply to: Simple Catch Theme and Drop down menu for Sub PagesYou need to create Custom Menu. See this http://en.support.wordpress.com/menus/#changing-the-order-of-menu-items-and-creating-sub-menus
Forum: Themes and Templates
In reply to: Simple Catch Theme and Drop down menu for Sub PagesWhy don’t you check the Theme Instruction http://catchthemes.com/theme-instructions/simple-catch/
Forum: Themes and Templates
In reply to: Simple Catch – Change Page Width?If you want the no-sidebar template to use the full width then you can add in the following css in the Custom CSS box in Theme Options under Appearance Tab in your WordPress Dashboard:
.no-sidebar div.col8, .error404 div.col8 {
width: 978px;
}can you send me the URL so that I can see what is going wrong…
Forum: Fixing WordPress
In reply to: Blank parimeters on WordPress Dashboard.Hi Phil,
There seems to be problem with the wordpress-custom-avatars-plugin not with our theme.
Regards,
Sakin