Forum Replies Created

Viewing 20 posts - 14,161 through 14,180 (of 14,488 total)
  • Author
    Posts
  • in reply to: Problems with CSS for .wp-smiley #2861
    Sakin
    Keymaster

    @Greyer: When you can cache installed then you need to manually clear the cache. Thanks it helped you.

    in reply to: Make Attachment Page Full Width #2852
    Sakin
    Keymaster

    @troy: I don’t think that is the theme issue. Check your content and the gallery links.

    in reply to: How to use a differnt menu for TinyNav? #2850
    Sakin
    Keymaster

    @Trishah: For this type of customize, consider hiring cutomizer: http://jobs.wordpress.net/

    in reply to: Feature silder space problem #2846
    Sakin
    Keymaster

    @fanniew: It should be working. I check it all. It’s strange. I see that there is lot of css mixes you added and mine. So, need to clean up.

    in reply to: How to use a differnt menu for TinyNav? #2845
    Sakin
    Keymaster

    Oh it’s controlled through catchbox-menu.min.js but if you want see un-minify version then catchbox-menu.js . You will find both the files in js folder.

    in reply to: Feature silder space problem #2841
    Sakin
    Keymaster

    @fanniew: this is again your problem with your featured and featured-text css. Change those to following:

    .featured {
    background-color: #fff;
    border-color: #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #cc;
    height: 400px;
    position: absolute;
    top: 0;
    width: 976px;
    z-index: 100000;
    }
    .featured-text {
    display: block;
    left: 610px;
    padding: 16px 5px 0;
    position: absolute;
    text-align: justify;
    top: 0;
    width: 350px;
    word-wrap: break-word;
    z-index: 100000 !important;
    }

    in reply to: Home page error and slideshow issue #2839
    Sakin
    Keymaster

    @rlsdesigns: It’s getting cache from WP-Super Cache plugin. Can you clear your Cache in WP-Super Cache plugin settings and check it.

    in reply to: Feature silder space problem #2836
    Sakin
    Keymaster

    @Fannew:

    You css has problem change this for #header #mainmenu

    #header #mainmenu {
    background-color: #fff;
    border: 0 none;
    display: block;
    float: left;
    margin-top: 20px;
    position: absolute;
    right: 0;
    top: 10px;
    width: 509px;
    z-index: 999;
    }

    and add this extra css:

    #header .layout-978 {
    position: relative;
    }

    in reply to: Problems with CSS for .wp-smiley #2833
    Sakin
    Keymaster

    @Greyer: It should be as below:

    #main #content img.wp-smiley { border: none; }

    But I don’t see the smiley in your site to check it. If this fix then it’s fine otherwise send me the direct link of the post which has smiley.

    in reply to: Placing the centered content between the posts #2832
    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; ?>

    in reply to: Slider Dimensions #2831
    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 Header

    Replace with
    add_image_size( 'slider', 976, 450, true); // uses on Featured Slider on Homepage Header

    But 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.

    in reply to: Format stripped on main page but not individual page #2830
    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

    Sakin
    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; }

    in reply to: Problems with CSS for .wp-smiley #2827
    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.

    in reply to: Language-files #2823
    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/

    in reply to: Pages in slider possible? #2822
    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.

    in reply to: Featured image on top of Post #2821
    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; ?>

    in reply to: How to use a differnt menu for TinyNav? #2820
    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

    in reply to: Centering the content inside Adspace widget #2819
    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.

    in reply to: Make Attachment Page Full Width #2818
    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;
    }

Viewing 20 posts - 14,161 through 14,180 (of 14,488 total)