Forum Replies Created

Viewing 20 posts - 14,361 through 14,380 (of 14,476 total)
  • Author
    Posts
  • in reply to: Blog page – featured slider #1527
    Sakin
    Keymaster

    @regalaffair: In Simple Catch Pro theme there is slider option to enable slider in “Homepage / Frontpage” only.

    Check the settings id “Theme Options -> Featured Slider -> Slider Options”

    in reply to: Slider #1526
    Sakin
    Keymaster

    @mjg1981: I am little confused as I just check in your site and the slider is working fine. Yes, in pro version you have more option in slider. You can use slider as independent through image slider.

    in reply to: editing thumbnail #1525
    Sakin
    Keymaster

    @sandyboyack: can you send me your site URL so that I can see what you are doing wrong.

    in reply to: Link Color Not Applying to Theme #1488
    Sakin
    Keymaster

    @LeslieMiller: Always remember that you shouldn’t change the core theme file directly. You can customize your theme with the help of Theme Options under Appearance Tab of your WordPress Dashboard. When you want to modify further then there is two way to do it. For simple modification, then you can use “Custom CSS” box in your Theme Options to edits. Further, if you want to do the advance modification on the theme files and functions then you need to build child theme and work on it.

    in reply to: HOW CAN I REMOVE THE WHITE FRAME TOP ? #1486
    Sakin
    Keymaster

    @elielhillel : Just add the following css in the “Custom CSS” box in Theme Option under Appearance Tab in your WordPress Dashboard.

    #branding hgroup {
    margin: 0;
    padding: 0;
    }

    After that you have to upload the header image with minimum width of 1000px. Currently your header image (http://www.eliel.co.il/wp-content/uploads/2012/10/cropped-logotop2.jpg ) is only 960px width.

    in reply to: Link Color Not Applying to Theme #1474
    Sakin
    Keymaster

    @LeslieMiller: You are still using Simple Catch Version 1.4.5 . See this style from your site http://uncledavescow.com/wp-content/themes/simple-catch/style.css

    But our latest version is 1.4 8 http://wordpress.org/extend/themes/simple-catch

    in reply to: HOW CAN I REMOVE THE WHITE FRAME TOP ? #1471
    Sakin
    Keymaster

    @elielhillel: I am not being able to open your image. So, can you send me image and also the site URL.

    in reply to: Spacing Above YouTube Widget #1470
    Sakin
    Keymaster

    @monsterhomefitness: I will only be able to see it after I see the actual site. So, send me your site url.

    in reply to: Link Color Not Applying to Theme #1468
    Sakin
    Keymaster

    @LeslieMiller: You are using old version. So, I won’t be able to fix it. Can you upgrade to latest version of Simple catch. If the problem still exist then let me know it.

    in reply to: catch-box: I can't change the default layout anymore #1465
    Sakin
    Keymaster

    Finally I got it what you mean. I got solution for you. Now, can you replace the code in sidebar.php with this one https://dl.dropbox.com/u/81234910/sidebar.php

    in reply to: catch-box: I can't change the default layout anymore #1462
    Sakin
    Keymaster

    The dropbox image did you make it public as it is not accessible to me.

    in reply to: catch-box: I can't change the default layout anymore #1460
    Sakin
    Keymaster

    Can you send me the image screenshot for that I can check in.

    in reply to: Remove search at top right of page #1451
    Sakin
    Keymaster

    @nyes1nps: Your site URL link please.

    in reply to: catch-box: I can't change the default layout anymore #1446
    Sakin
    Keymaster

    Hi Christophe,

    For now you can replace your copy of function.php with this one http://themes.svn.wordpress.org/catch-box/1.5.5/functions.php and your style.css with this one http://themes.svn.wordpress.org/catch-box/1.5.5/style.css

    the video is still not visible for me. I think there is country restriction. But I am sure that this will fix your issues as it has fixed for all other users.

    Regards,
    Sakin

    in reply to: catch-box: I can't change the default layout anymore #1442
    Sakin
    Keymaster

    Hi Christophe,

    I am not being able to see your video. It’s error. I see that you have created custom HomePage By PMA template. So, what you want to achieve. I think your old screenshot will be best for me.

    Regards,
    Sakin

    in reply to: explorer version 7 No presents a good template #1440
    Sakin
    Keymaster

    @elielhillel: But I would like to tell you. If you could highlight the issue in IE7 and add in the screenshot. Someone might be able to help you. Even I will look into it if it’s just a simple one.

    in reply to: Content Display error after update #1438
    Sakin
    Keymaster

    @elielhillel: You got different issue. Can you add the following css in your “Custom CSS” box in you theme options under Appearance Tab:


    .sidebar-content #primary {
    float: right;
    margin: 0 0 0 -35.5%;
    }
    .sidebar-content #content {
    margin: 0 3% 0 38.6%;
    }
    .sidebar-content #secondary {
    float: left;
    margin-left: 3%;
    margin-right: 0;
    }
    .sidebar-content.singular #content {
    margin: 0 3%;
    position: relative;
    width: auto;
    }

    All this issue will be fixed in version 1.5.5 soon. This is just a temporary fix. As soon as the new version is available for download. You can just remove this.

    in reply to: catch-box: I can't change the default layout anymore #1432
    Sakin
    Keymaster

    can you replace this in your function.php file line no 625 till 655


    /**
    * Adds two classes to the array of body classes.
    * The first is if the site has only had one author with published posts.
    * The second is if a singular post being displayed
    *
    * @since Catch Box 1.0
    */
    function catchbox_body_classes( $classes ) {
    $options = catchbox_get_theme_options();
    $layout = $options['theme_layout'];
    if ( function_exists( 'is_multi_author' ) && !is_multi_author() ) {
    $classes[] = 'single-author';
    }
    if ( $layout == 'content-sidebar' && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' ) ) {
    $classes[] = 'content-sidebar';
    }
    elseif ( $layout == 'sidebar-content' && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' ) ) {
    $classes[] = 'sidebar-content';
    }
    elseif ( $layout == 'content-onecolumn' && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' ) ) {
    $classes[] = 'content-onecolumn';
    }
    elseif ( is_page_template( 'page-disable-sidebar.php' ) || is_attachment() ) {
    $classes[] = 'singular';
    }
    elseif ( is_page_template( 'page-fullwidth.php' ) || is_attachment() ) {
    $classes[] = 'fullwidth';
    }
    return $classes;
    }
    add_filter( 'body_class', 'catchbox_body_classes' );

    Let me know if this fix your issue and then I will release the patch now.

    in reply to: Content Display error after update #1431
    Sakin
    Keymaster

    @SunnerBubbsy:
    can you replace this in your function.php file line no 625 till 655


    /**
    * Adds two classes to the array of body classes.
    * The first is if the site has only had one author with published posts.
    * The second is if a singular post being displayed
    *
    * @since Catch Box 1.0
    */
    function catchbox_body_classes( $classes ) {
    $options = catchbox_get_theme_options();
    $layout = $options['theme_layout'];
    if ( function_exists( 'is_multi_author' ) && !is_multi_author() ) {
    $classes[] = 'single-author';
    }
    if ( $layout == 'content-sidebar' && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' ) ) {
    $classes[] = 'content-sidebar';
    }
    elseif ( $layout == 'sidebar-content' && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' ) ) {
    $classes[] = 'sidebar-content';
    }
    elseif ( $layout == 'content-onecolumn' && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' ) ) {
    $classes[] = 'content-onecolumn';
    }
    elseif ( is_page_template( 'page-disable-sidebar.php' ) || is_attachment() ) {
    $classes[] = 'singular';
    }
    elseif ( is_page_template( 'page-fullwidth.php' ) || is_attachment() ) {
    $classes[] = 'fullwidth';
    }
    return $classes;
    }
    add_filter( 'body_class', 'catchbox_body_classes' );

    in reply to: catch-box: I can't change the default layout anymore #1429
    Sakin
    Keymaster

    I have just send you email in your info of puurslof.be . Check your email and send me reply.

Viewing 20 posts - 14,361 through 14,380 (of 14,476 total)