Catch Themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Catch Box] How to change main slider gray background?@andrew Nevins: thanks a lot for your support in the forum.
@chochonet: yes you need to change the default fallback background color. Also don’t change css directly in style.css. Try to use child theme or Custom CSS box in Theme Option under Appearance tab in your WordPress Dashboard. If you change directly on style.css or any theme file then your changes will be gone when you update your theme.Best you can add the following css in your “Custom CSS” box:
#branding #access, #colophon #access-footer { background: #ff4800; /* Show a solid color for older browsers */ background: -moz-linear-gradient(#ff4800, #ff4800); background: -o-linear-gradient(#ff4800, #ff4800); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff4800), to(#ff4800)); /* older webkit syntax */ background: -webkit-linear-gradient(#ff4800, #ff4800);Forum: Themes and Templates
In reply to: [Catch Box] Catch Box not IE8 and IE9 compatible?@dibeen: Did you check your site if you have done any custom. First check with this demo url: http://catchthemes.com/demo/catchbox/
If there is still problem then send me your site URL of the issue page.
Forum: Themes and Templates
In reply to: [Simple Catch] [Theme: Simple Catch] Version UpdateSimple Catch Version 1.5 is out now for download.
http://wordpress.org/extend/themes/download/simple-catch.1.5.zip
Change Log:
* Added Russian translation ru_RU.po and ru_RU.mo
* Added Word Wrap for commentlist in style.cssSpecial thanks to Alexey Kurpachev for helping us in Russian Translation.
Forum: Themes and Templates
In reply to: [Catch Box] Featured Slider & Image Stopped Showing@bdleasure: Check your email. I have replied you back
Forum: Themes and Templates
In reply to: [Catch Box] Featured Slider & Image Stopped Showing@bdleasure: It’s working fine for me. I think there is something what you are not doing correctly. Can you send me your site access through contact form in Catch themes http://catchthemes.com/contact-us/. In subject please add it as WordPress.org support forum featured image and slider issues.
Forum: Themes and Templates
In reply to: [Catch Box] comment are not showing@agnezzz: It’s little strange. I cannot regenerate the same problem you have. But looks like there is no problem in your site now.
If anyone of you have problem then let me know with your site URL.
Forum: Fixing WordPress
In reply to: Problem with previous/next links for my page of posts [catchbox]Oh Sorry I missed it. I tested the code and it is working for me. Add the code as below:
<?php /** * Template Name: Newsroom * The newsroom template file. * This is the template file used for displaying the main newsroom page. * @package Catch Themes * @subpackage Catch_Box */ get_header(); ?> </div><!-- site-logo --> <div id="content100" div style="text-align:left;"> <div><?php dynamic_sidebar('Opinions'); ?></div> <div style="padding: 0.1em 0% 3em;"> <?php $temp = $wp_query; //save old query $wp_query= null; //clear $wp_query $args=array( 'cat' => 7, 'orderby' =>'post_date', 'order' => 'DESC', 'posts_per_page' => 10, 'paged' => $paged ); $wp_query = new WP_Query($args); if( $wp_query->have_posts() ) { while ($wp_query->have_posts()) : $wp_query->the_post(); ?> <br /> <strong><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></strong> <div style="text-align:right;"><em><?php echo get_the_date(); ?></em></div> <p><?php the_excerpt(); ?></p> <?php endwhile; ?> <?php previous_posts_link(); ?><?php next_posts_link(); ?> <?php } //if ($my_query) wp_reset_postdata(); ?> </div><!-- extra padding --> </div><!-- #content100 --> </div><!-- #primary --> <?php get_footer(); ?>Forum: Fixing WordPress
In reply to: Problem with previous/next links for my page of posts [catchbox]check this code
<?php /** * Template Name: Newsroom * The newsroom template file. * This is the template file used for displaying the main newsroom page. * @package Catch Themes * @subpackage Catch_Box */ get_header(); ?> </div><!-- site-logo --> <div id="content100" div style="text-align:left;"> <div><?php dynamic_sidebar('Opinions'); ?></div> <div style="padding: 0.1em 0% 3em;"> <?php $temp = $wp_query; //save old query $wp_query= null; //clear $wp_query $args=array( 'cat' => 1, 'orderby' =>'post_date', 'order' => 'DESC', 'posts_per_page' => 10 ); $wp_query = new WP_Query($args); if( $wp_query->have_posts() ) { while ($wp_query->have_posts()) : $wp_query->the_post(); ?> <br /> <strong><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></strong> <div style="text-align:right;"><em><?php echo get_the_date(); ?></em></div> <p><?php the_excerpt(); ?></p> <?php endwhile; ?> <?php previous_posts_link(); ?><?php next_posts_link(); ?> <?php } //if ($my_query) wp_reset_postdata(); ?> </div><!-- extra padding --> </div><!-- #content100 --> </div><!-- #primary --> <?php get_footer(); ?>Forum: Themes and Templates
In reply to: [Catch Box] comment are not showingcan you send me your site URL
@ahoyroo: it’s not the theme problem but the custom css in your child theme is the main problem.
Forum: Themes and Templates
In reply to: [Catch Box] Have Slider run on a Category Archive Page?@mparkerpgs: currently it only support featured posts.
Forum: Themes and Templates
In reply to: [Catch Box] Featured Slider & Image Stopped Showing@bdleasure: Did you add in the featured image in the post. You need to add in the featured image in the post and then add in the Post ID in the Featured Slider Post IDs.
Forum: Themes and Templates
In reply to: [Simple Catch] Moving Footer@marcie1980: yes there is lot of things going wrong. so check it and fixed that first.
Forum: Themes and Templates
In reply to: [Simple Catch] Removing Page Names from HomePage@michael_p: I am not so sure about your question. Can you explain bit more and also add in your site url while posting your question so that it will be easier to understand and answer it.
Forum: Themes and Templates
In reply to: [Catch Box] [Theme: Catch Box] Version UpdateCatch Box Version 1.5.6 is out now for download.
http://wordpress.org/extend/themes/download/catch-box.1.5.6.zip
Change Log for 1.5.6 is as below:
* Fixed the sidebar option
* Added One-column, no sidebar page template and sidebar option