Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@kangooloss3: you will need to edit index.php and do it like below:
<?php $count=1; while ( have_posts() ) : the_post(); $count++; ?>
<?php if ( $count == 2 || $count == 4 ): ?>
<div class="hentry" style=" text-align: center;">
<?php echo $count ; ?> CODE HERE
</div>
<?php endif; $count++; ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
Sakin
Keymaster@mgerney: Image size is define in functions.php in simplecatch_setup() function.
See this line
add_image_size( 'slider', 976, 313, true); // uses on Featured Slider on Homepage HeaderReplace with
add_image_size( 'slider', 976, 450, true); // uses on Featured Slider on Homepage HeaderBut please make this changes in your Child theme as if you just update the core theme then when there is update it will be reverted back. This make you change again and again when there is update.
After changing the code. You need to install the Regenerate Thumbnails Plugin and Regenerate your thumbnails.
Sakin
Keymaster@kitsune: First to let you know that you posted this in wrong forum. This is for Simple Catch theme. For Catch Box theme please use http://catchthemes.com/support-forum/forum/catch-box-public/
To make both homepage and the single post layout same. You need to select “Content Layout” as Show full content. To do this : Go to your WordPress Dashboard -> Theme Options
January 7, 2013 at 7:49 pm in reply to: Border above and below a table; black border at the top of the site; page width #2828Sakin
Keymaster@Poornima: just add the following CSS in Custom CSS box
/* To remove the border */
.home #content table, .home #content td { border: none;}
/* To remove the black border at the top of the page */
#header .top-bg { background: none; border: none; }
/* Homepage Content width 100% */
.home #main #content { width: 100%; }
Also remove this css. this margin left is damaging your site.
#main { margin-left: 10px; }Sakin
Keymaster@Greyer: Can you send me your site url so that I can check in what is going on and will send you css.
Sakin
Keymaster@jie66: why don’t you send us the translation file and then we will include in theme itself. Please contact us http://catchthemes.com/contact-us/
Sakin
Keymaster@cooks: there is no page support for the featured slider. You can just rewrite the same thing in the post and add that post ID.
But you can check our the cool function in Catch Box Pro theme. Where there is Featured Image Slider. So, to create slider you don’t need post or page. Just upload the image and details as necessary.
Sakin
Keymaster@Mihir1997: You can add the following code in content-single.php just above header.
<?php if( has_post_thumbnail() ):?>
<div class="image-post">
<?php the_post_thumbnail('featured-slider'); ?>
</div>
<?php endif; ?>
Sakin
Keymaster@Trishah: Yes primary menu will be there is all screen size only the secondary and footer menu will be hidden. the hiding part is from style.css
Sakin
Keymaster@kangooloss3: if you could add in the ads in the adspace widget and send me your site url. Then only I will be able to send you the code to do that. the safe way is to add css in the “Custom CSS” box in your Theme Options.
Sakin
Keymaster@troy: Added the following CSS in the “Custom CSS” box in your Theme Options under Appearance Tab.
.attachment #page {
max-width: 690px;
}
.attachment #content {
margin: 0 3%;
width: auto;
}
.attachment #secondary {
display: none;
}
Sakin
Keymaster@thorsten: Yes there seems to have problem in the Theme Options with the Custom CSS Code, Header Margins and Font Size Options. So, please download the latest version from your account and it will be fine.
For update notification: You can link us on Facebook https://www.facebook.com/catchthemes or Follow us in Twitter http://twitter.com/catchthemes.
Sakin
Keymaster@thorsten: Catch Box Pro is just translation ready. Where inside the language folder you will see catchbox-pro.pot . Now you need to create .mo and .po files for your language. You can created it through http://www.poedit.net/
Sakin
Keymaster@kangooloss3: That’s not the theme issues. It’s the plugin issue. Which plugin you are using? Can you post that in the support forum of that plugin.
Let me know if you need more help.
Sakin
KeymasterHi Fannie,
The site URL is has nothing http://www.jplconseil.fr/. Can you send me your site URL.
Regards,
SakinSakin
Keymaster@Piirus: You can add the following css in “Custom CSS” box in your Theme Options
.commentlist > li.bypostauthor {
background-color: transparent;
}
Sakin
Keymaster@sheardp: No proble with image wrap with H1 element. When building child theme wrap site title and description in one wrapper and then you can align it.
Sakin
Keymaster@rlsdesigns: For adding slider with just image and title without making it clickable. This can be done by using Featured Image Slider.
1. Go to “Theme Options -> Featured Slider”
2. Then in your “Slider Options”, select “Featured Image Slider”.
3. Then add image and title only in your “Featured Image Slider Options” and then click on save.It’s all done.
-
AuthorPosts
