Forum Replies Created

Viewing 20 posts - 3,041 through 3,060 (of 14,509 total)
  • Author
    Posts
  • Sakin
    Keymaster

    @fcexclusive: It’s because of your custom css. Check your menu colors and also from widgetize navigation menu plugin. This is not theme issue. You menu need to come like this http://catchthemes.com/demo/catch-base/

    in reply to: Breadcrumbs on Catch Box Pro #61024
    Sakin
    Keymaster

    @Harry: Breadcrumb is not there in both free and pro version. Which plugin you used in Catch Box Free version. Have you customize it.

    in reply to: Remove descriptive text under Menu Bar #61023
    Sakin
    Keymaster

    @Albert: You can add the following css in “Appearance => Theme Options => Custom CSS” box to hide that.
    .page-header { display: none; }

    in reply to: How to make classic view default on mobile device #61020
    Sakin
    Keymaster

    @Cesar R: Nice that you fixed it 🙂

    in reply to: mobile-menu: wrong sort order #61019
    Sakin
    Keymaster

    @bfischer: Can you post in your site URL then I can check that for you.

    in reply to: WP Passworded Page #61018
    Sakin
    Keymaster

    @bigoslesli: When I check your page, it is required to enter password. So, it’s working fine. Just a note that login user with access permission will not need to enter password. Also after you clear W3 Total Cache, you need to log out, refresh your browser and check in.

    in reply to: removing post date and time #61017
    Sakin
    Keymaster

    @heidiho5050: You can hide it by adding the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .entry-meta .posted-on {
        display: none;
    }
    in reply to: Changing Pagination Colors #61016
    Sakin
    Keymaster

    @2 Brown Dawgs Blog: We found the issue in the Color Options for pagination and will be fixed in next version update.

    So for now, you can change the color code in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    /* Pagination Background and text color */
    .nav-links a {
        background-color: #f2f2f2;
        color: #21759b;
    }
    /* Pagination Hover Background and text color */
    .nav-links a:hover { 
        background-color: #f2f2f2;
        color: #21759b;
    }
    in reply to: need help with Paypal #61015
    Sakin
    Keymaster

    @Anne-Pia: Sorry I only know it by adding plugin such as WooCommerce and Easy Digital Download. You might have to ask in PayPal support forum.

    in reply to: Menu Height & Home Page Removal #61012
    Sakin
    Keymaster

    @Hair Bear: You can hide the it by adding in the following css in “Appearance => Theme Options => Custom CSS” box:
    .home #main { display: none; }

    in reply to: menu bugginess #61011
    Sakin
    Keymaster

    @Kim: nice 🙂

    in reply to: Move Primary Menu underneath Featured Image Slider? #61010
    Sakin
    Keymaster

    @Kev0192: Sorry there is not options to do this. For this, first you need to build child theme. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/

    Then add the following code in your child theme functions.php file:

    // Unhook default Catch Responsive functions
    function unhook_catchresponsive_functions() {
        remove_action( 'catchresponsive_after_header', 'catchresponsive_primary_menu', 20 );
    }
    add_action( 'init', 'unhook_catchresponsive_functions' );
    
    //Adding menu after slider
    add_action( 'catchresponsive_before_content', 'catchresponsive_primary_menu', 20 );
    in reply to: Set Footer background color to transparent?? #61009
    Sakin
    Keymaster

    @Kev0192: This is WordPress Core issue and it’s not fixed yet. Please check this WordPress core ticket https://core.trac.wordpress.org/ticket/21059

    So, the only option I see is to add the following css in “Appearance => Theme Options => Custom CSS Options” box:

    #site-generator {
        background-color: transparent;
    }
    in reply to: Featured Slider Transparency Box #61006
    Sakin
    Keymaster

    @cmct: ok you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #feature-slider .entry-container {
        background: #444;
        background: rgba(0,0,0,0.6);
        -moz-border-radius:     4px;
        -webkit-border-radius:  4px;
        border-radius:          4px;     
    }
    in reply to: Features missing after Simple Catch Pro upgrade #61005
    Sakin
    Keymaster

    @Albert: Cool. Yes, when you update or change any theme, menu location should be reassigned.

    in reply to: header- and footercodes #61004
    Sakin
    Keymaster

    @Cattext: You can install plugin “Catch Web Tools” https://wordpress.org/plugins/catch-web-tools/ and then go to “Catch Web Tools => Webmaster Tools” and then Enable Webmaster module. After that you can add in Header and Footer codes as per your need.

    in reply to: Catch-updater installation #60993
    Sakin
    Keymaster

    @Ken: Oh sorry for that.

    in reply to: menu bugginess #60992
    Sakin
    Keymaster

    @Kim: If you are using WordPress Menu. Then try activating default menu like Twenty Fifteen and then try to save that menu. If you still face the same problem then it’s your server and WordPress issue not the theme issue.

    in reply to: Search results page #60979
    Sakin
    Keymaster

    @effess: Don’t use !important in your css. That is causing issue. You have following css from Google Font css

    #main .type-page .entry-header,#main .type-page .entry-header a,.image-attachment .entry-container .entry-header h1.entry-title {
    							color: #67009b!important; font-family: 'Playfair Display'!important; font-style: normal!important; font-weight: 400!important; 						}

    That will force it. So, in this case you need to remove that or make your other css more stronger and add it in “Appearance => Theme Options => Custom CSS” box. But I don’t like this important stuffs.

    .search-results #main #content .hentry .entry-header .entry-title a {
        font-size:14px !important; 
        color: #67009b !important; 
    }
    
    .search-results #main #content .hentry .entry-header .entry-title a:hover {
        color: #9900cc !important; 
    }
    in reply to: custom title on the top of the page #60974
    Sakin
    Keymaster

    @Mikhail: Sorry we don’t know about yandex.ru and you can see even all the default WordPress theme have multiple H1. It’s best practices. But if you really want to change that then you have to change by building child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/. Then you need to copy all template files like content.php, content-none.php, content-page.php, content-single.php, no-results.php, search.php and change h1 to h2 or your desire heading tag.

Viewing 20 posts - 3,041 through 3,060 (of 14,509 total)