Forum Replies Created

Viewing 20 posts - 13,981 through 14,000 (of 14,317 total)
  • Author
    Posts
  • in reply to: update child theme? #2896
    Sakin
    Keymaster

    @hendrik: Can you send me your site URL. If you have created the child theme for simple catch pro theme then in your stylesheet style.css you need to define
    Template: simple-catch-pro

    If you want to update the Simple Catch Pro theme then you can download it from your account in Catch themes.

    in reply to: Remove CatchThemes attribute #2894
    Sakin
    Keymaster

    @Mihir1997: You shouldn’t remove the Catch Theme attribute in the footer if you are using free theme. In free theme this is the only way to get any support for the developer.

    But if you want to remove then just upgrade to Catch Box Pro theme and there you will see Footer Editor box where you can just edit or delete it.

    in reply to: How to remove something on home page #2893
    Sakin
    Keymaster

    @vonromantiko: Archives and Meta are default if you don’t have any widget is sidebar. If you don’t want sidebar at all in the home page then select Default layout in theme options as One-column, no sidebar . If you want more layout option then upgrade to Catch Box Pro theme.

    in reply to: How to remove something on home page #2892
    Sakin
    Keymaster

    @vonromantiko: The sidebar is controlled through widget. Go to your widgets http://www.vonromantiko.com/wp-admin/widgets.php and drag and drop the widget you want. If you don’t have widget on Main Sidebar then it will display Archives and Meta as default.

    in reply to: Impossible to insert Youtube videos #2867
    Sakin
    Keymaster

    @Guy Truite: Hi you can add youtube video by just pasting the link or by embeding the code.

    in reply to: catch box pro feature slider dimension #2866
    Sakin
    Keymaster

    @thorsten: There is no fixed picture dimension for Featured Image Slider as you can make the image slider whole width or just a small one like in basic version.

    If you use regular image slider then width is 644px but if you use large full content slider then width is 920px.

    You can set the number of slides in the slider through “Slider Options”. There you will see “Number of Slides” input box just type in the number you want.

    For opening in new window. It is not currently supported. We have noted down and wil add in future version updates. For now, you need to hire a customizer ( http://catchthemes.com/hire-customizer/ ) or post it in jobs ( http://jobs.wordpress.net/ )

    in reply to: how to add button upper the homepage img #2865
    Sakin
    Keymaster

    @chen: for this you need to create child theme and thne crate new header.php where you can add button code just above <nav id="access" role="navigation"> . Then after adding that from css you need to position your button.

    in reply to: Catch Box Pro sometimes wrong text distance #2864
    Sakin
    Keymaster

    @thorsten: You can upload through FTP or using WordPress admin panel. Uploading from FTP is just easy. Just upload and replace the theme files. But for using through administrative panel. You need to first activate any other default theme and then delete “Catch Box Pro” theme. Then install the updated fresh copy just like you installed the new one.

    To fix the Font Size Options and Header Options in your Theme Options panel in older version. Go to those settings and check “Reset Header Margin?” and “Reset Font Size?” respectively and save changes.

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

    @rlsdesigns: No necessary to delete the plugin just remember to clear the cache when you make changes.

    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.

Viewing 20 posts - 13,981 through 14,000 (of 14,317 total)