Forum Replies Created

Viewing 20 posts - 13,521 through 13,540 (of 14,500 total)
  • Author
    Posts
  • in reply to: HELP! Theme Options is not working :( #5042
    Sakin
    Keymaster

    For other those who have this issue. This issue will be fixed in new Version 0.1.2.3 which will be out soon. But for now you can just go to “Appearance => Theme Options => Excerpt / More Tag Settings” just remove arrow -> and save it. Then only make changes.

    in reply to: HELP! Theme Options is not working :( #5041
    Sakin
    Keymaster

    @dianzt: Thanks for reporting and begin patience. I have been able to find that the issue was is few server while for other it was working fine. I have fixed it in your site. Now you can change and work on the site.

    in reply to: HELP! Theme Options is not working :( #5039
    Sakin
    Keymaster

    @dianzt: I am working in your site. Will soon post the solution. Thanks.

    in reply to: Multiple H1 tags on blog posts & pages #5030
    Sakin
    Keymaster

    Yes Robert, The unhooking process is the WordPress hook. Thanks for using Catch Box Pro theme.

    in reply to: iPad – Full Width #5028
    Sakin
    Keymaster

    @TripleMoxy: can you try adding this CSS in your “Custom CSS” box in Theme Options panel and check with your iPad. Also send me your Site URL after you add in this css. So, I can check in with iPad.

    /* iPads (portrait and landscape) ----------- */
    @media only screen
    and (min-device-width : 768px)
    and (max-device-width : 1024px) {
    /* Styles */
    #main #content {
    margin: 0 38.6% 0 3%;
    width: 58.4%;
    }
    #main #secondary {
    float: right;
    margin: 0 3% 0 0;
    width: 32.5%;
    }

    in reply to: Multiple H1 tags on blog posts & pages #5027
    Sakin
    Keymaster

    @Robertf: Yes. I didn’t realize the unhooking process and simply gave you the function. As I am supporting a lot of users. But I am happy that finally it worked for you.

    PS. Are you writing plugin or review of theme.

    in reply to: Recommended BG dimensions? #5025
    Sakin
    Keymaster

    @heeralc: For designing the background. Try to use repeatable background/texture/patterns. As the size changes as per the screen size and yes if you build really large background then it will create loading problem in Mobile devices.

    in reply to: HELP! Theme Options is not working :( #5024
    Sakin
    Keymaster

    Hello Diana, Did you try disabling the plugin you used and check in. First try disabling the plugin and check it. If not then reply my email. You got mail.

    in reply to: Featured image alt (slider) #5023
    Sakin
    Keymaster

    @Raphael: Alt tag in Catch Box Pro theme Featured Image slider is the Title. So, just change the tile in the Featured Image Slider Options under Appearance Tab in your WordPress Dashboard.

    in reply to: Non-clickable slider image #5022
    Sakin
    Keymaster

    @Raphael: Are you using Catch Box Pro Theme. Then simple use Featured Image Slider instead of Featured Post Slider and then don’t add anything in links. Just add Image, title and description.

    in reply to: Color on Page change #5020
    Sakin
    Keymaster

    @JamieHaden: Just add the following css in “Custom CSS” box in your Theme Options panel.
    .site { background-color: #ffebbf; }

    in reply to: Eliminate Tag/category page box #5019
    Sakin
    Keymaster

    @Donald.McIntyre: Just add the following css in “Custom CSS” box in your Theme Options panel.
    .tag .page-header { display: none; }

    in reply to: Background of header. #5018
    Sakin
    Keymaster

    @urshakta: Your site URL please and I will send your the custom css.

    in reply to: Header size and logo border #5017
    Sakin
    Keymaster

    @subper: For responsive you need to control a lot. there is whole set of responsive css in responsive.css . So, you need to adjust each @media screen. So, I suggest you to take expert help either from Tweaky or http://jobs.wordpress.net/

    in reply to: Please Please help! Get rid of Mt Everest? #5016
    Sakin
    Keymaster

    @reuben26: Maybe your site got conflict with the plugins you are using it. So, try disabling the plugins and check it. I have also emailed you. You can reply me there.

    in reply to: Two Questions #5015
    Sakin
    Keymaster

    @golfer300: I am bit confused with your question. The “Homepage Category Settings” you can choose single category or multiple categories. Use this option if you want to control your homepage to show posts from selective categories only. But if you want to show posts from all category then ignore this setting.

    in reply to: Please Please help! Get rid of Mt Everest? #5013
    Sakin
    Keymaster

    @skweekah: can you try adding in the following css in “Custom CSS” box in your theme options panel this will make the IE8 opacity to work;
    #main-slider .entry-title a, #main-slider .entry-content, #slider-nav a { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; }

    But for width, I am confused why it is not working. I will check in if I fond the solution. Always use updated IE.

    in reply to: Multiple H1 tags on blog posts & pages #5012
    Sakin
    Keymaster

    I have also emailed you the code.

    in reply to: Multiple H1 tags on blog posts & pages #5011
    Sakin
    Keymaster

    Hi Robert,

    Sorry, I gave you wrong action to remove it. I didn’t realize it was for the child theme.

    First you have to Unhook default Catch Box Pro functions by adding following functions in your child theme functions.
    // Unhook default Catch Box Pro functions
    function unhook_catchbox_functions() {
    // Don’t forget the position number if the original function has one
    remove_action( ‘catchbox_headercontent’, ‘catchbox_headerdetails’, 15 );
    }
    add_action( ‘init’, ‘unhook_catchbox_functions’ );

    Then you can add in your own function like below:
    add_action( ‘catchbox_headercontent’, ‘catchbox_headerdetails_child’, 15 );
    function catchbox_headerdetails_child() { ?>
    <div class="logo-wrap clearfix">
    <?php
    // Check to see if the header image has been removed
    $header_image = get_header_image();
    if ( ! empty( $header_image ) ) : ?>
    <div id="site-logo"><a href="<?php echo esc_url( home_url( ‘/’ ) ); ?>" title="<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>" rel="home">
    <img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>" />
    </a></div>
    <?php endif; // end check for removed header image ?>
    <hgroup id="site-details">
    <h1 id="site-title"><a href="<?php echo esc_url( home_url( ‘/’ ) ); ?>" title="<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>" rel="home"><?php bloginfo( ‘name’ ); ?></a></h1>
    <h2 id="site-description"><?php bloginfo( ‘description’ ); ?></h2>
    </hgroup>
    </div><!– .logo-wrap –>
    <?php }

    in reply to: Featured Slider – Image leading to error page #5000
    Sakin
    Keymaster

    To all Catch Everest users, there is new version 0.1.2.2 available for download. You can just update your theme to fix this issue.

    There is cache for the Featured Post Slider, so after you update in. Please change any value on Them Options panel which will manually clear the cache otherwise you have to wait 24 hours to be cleared automatically.

Viewing 20 posts - 13,521 through 13,540 (of 14,500 total)