Forum Replies Created

Viewing 20 posts - 3,041 through 3,060 (of 14,507 total)
  • Author
    Posts
  • 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.

    in reply to: different header image on blogs #60973
    Sakin
    Keymaster

    @roche5000: Thanks for your appreciation 🙂

    If you like my support and Simple Catch theme then please support it by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/simple-catch?rate=5#postform

    in reply to: Spanish translation? #60972
    Sakin
    Keymaster

    @ehlersdanlosvascular: Ok I will email it now

    in reply to: two vidgets at header right sidebar in one line #60950
    Sakin
    Keymaster

    @Vitaliy: Your site need to be online for me to check in and give you custom css. I cannot give it on site which is not live. Sorry for that. Let me know it once you ahve yous site or testing site live.

    in reply to: Spanish translation? #60949
    Sakin
    Keymaster

    @ehlersdanlosvascular: There is no one to contribute spanish language. If you like to help then I can email you details and also do initial translation. You need to create es_ES.po and es_ES.mo files using free poedit software from http://poedit.net/. Once you complete then translation, we will add that file in languages folder of that theme so that you can use it in Spanish language.

    in reply to: Change the width #60948
    Sakin
    Keymaster

    @sn00kie: Your page width is 1200px only. I guess, we mean to make your content No Sidebar, Full Width, that option is there only in pro version. For free version, you need to add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .no-sidebar.content-width #main {
        width: 100%;
    }
    in reply to: Catch-updater installation #60947
    Sakin
    Keymaster

    @Ken: Sorry I am but confused. I think you are trying to update Catch Everest Pro theme from your WordPress Dashboard. For, that you need to install Catch Updater Plugin first. So, download the catch Updater plugin from http://catchthemes.com/wp-plugins/catch-updater/ and then install it from “Plugins => Add New => Uploads” and then active that plugin.

    Then you can download new version of Catch Everest Pro theme from your account at http://catchthemes.com/my-account and then upload it from “Appearance => Themes => Add New => Upload Theme”

    in reply to: disable search in catch base #60946
    Sakin
    Keymaster

    @annebelle: That disable search option is only there in Pro version. So, in Free version, you can either hide it from custom css. For that you can just add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #search-toggle {
        display: none;
    }

    Or you can build child theme and then copy catchbase_primary_menu() to your child theme functions.php file and then remove the code

    <div id="search-toggle" class="genericon">
        <a class="screen-reader-text" href="#search-container"><?php _e( 'Search', 'catchbase' ); ?></a>
    </div>
    
    <div id="search-container" class="displaynone">
        <?php get_Search_form(); ?>
    </div>
    Sakin
    Keymaster

    @fcexclusive: It is showing fine in my iPad and mobile devices. Have you clear your cache from “W3 Total Cache” plugin settings. Please clear it and refresh your browser to check in.

    The only issue I see is the color mobile menu anchor. So, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box or in your child theme style.css file to change the color:

    #masthead .mobile-menu-anchor a.genericon-menu, 
    #masthead .mobile-menu-anchor a.genericon-menu:hover {
        color: #f5e7ad;
        text-decoration: none;
    }
    in reply to: custom title on the top of the page #60921
    Sakin
    Keymaster

    @Mikhail: only one H1 per page is old. It was only valid for HTML4.

    In HTML5, you can have more then one H1 tag. That was issue only when you use HTML4 tags. In HTML5, H1 tag per article tag is good for SEO and we have carefully designed H1 tags with special attention on header tag and headings

    Catch Responsive Pro theme is build in HTML5, CSS3 and Responsive design. So, H1 is better for SEO then H2.

    You can also check this Video http://www.youtube.com/watch?v=GIn5qJKU8VM by Google software engineer Matt Cutts, who clearly states that you can use multiple H1 but don’t over do it. Also use h1 specific to heading and header tags.

    You can also check this article URL http://html5doctor.com/html5-seo-search-engine-optimisation/

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