Forum Replies Created

Viewing 20 posts - 5,421 through 5,440 (of 14,504 total)
  • Author
    Posts
  • in reply to: Change menu title on mobile devices? #49634
    Sakin
    Keymaster

    @Nijn: Actually we don’t recommend you to change that. But if you want to change that then send me your site URL and the Menu text for which you want to change to.

    in reply to: Social Media links shows up as bullets instead of icons #49633
    Sakin
    Keymaster

    @Mogens: Yes, I check in your site and see that you have customize the core css file style.css. You shouldn’t edit/add any files inside core theme directory ‘catch-evolution-pro’. If you need to edit or add any extra css then you can either add it in “Appearance => Theme Options => Custom CSS” box or build child theme and add it in your child theme style.css. For child theme read http://catchthemes.com/blog/create-child-theme-wordpress/

    So, please restore the original theme and then add customization as per the instruction. What is see in your cutomized style.css. There is missing closing bracket in

    #slider-wrap .featured-text .featured-text-wrap .slider-title {
        font-weight: bold;

    It should be as

    #slider-wrap .featured-text .featured-text-wrap .slider-title {
        font-weight: bold;
    }
    in reply to: Comments box #49631
    Sakin
    Keymaster

    @level7tech: To hide the leave a reply in your post header. You can add the following css in “Appearance => Theme Options => Custom CSS” box”
    .entry-header .comments-link { display: none; }

    About the way the comment works, it’s from WordPress and we don’t have anything to do with it. If you don’t like this then you might want to search for comment plugin like Disqus, Jetpack comment and so on.

    in reply to: tinynav three menu bars not showing #49629
    Sakin
    Keymaster

    @Riccardo: It’s because of your child theme. You haven’t build child theme properly. I check in your child theme style.css and see that you have copied all CSS from parent theme to child theme. This is not the way to do it. You should import the parent theme css and then add in your css below. You can read and download the sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/

    in reply to: Selectively displaying the homepage featured content #49628
    Sakin
    Keymaster

    @Riccardo: Try adding in the following css in “Appearance => Theme Options => Custom CSS” box to hide featured content for user not loggedin.

    #featured-post { display: none; }
    .logged-in #featured-post { display: block; }
    in reply to: responsive design submenu/drop down background color change #49597
    Sakin
    Keymaster

    @paul: Thanks, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #header-menu .sb-options { background-color: #000464; }
    @media screen and (max-width: 960px) {	
        #main-slider { display: none; }
    }
    in reply to: Remove Navigation Bar & Title on Header picture #49596
    Sakin
    Keymaster

    @Andrew: You can add CSS to hide the navigation based on the page ID class. So, can you send me the URL of the pages where you want to hide it then I will send you css to hide it.

    in reply to: Remove search in header? #49595
    Sakin
    Keymaster

    @stepawayfromthecarbs: You can add the following css in “Appearnace => Theme Options => Custom CSS” box to hide Search in header.
    #header .searchform { display: none; }

    in reply to: Weird header text #49594
    Sakin
    Keymaster

    @stepawayfromthecarbs: I don’t know from where you got this. This is nothing to do with the theme. This is the content you must have added somewhere. Can you go to “Appearance => Theme Options => Webmaster Tools => Header and Footer Codes => Code to display on Header” box. Maybe, you have added content there.

    in reply to: Primary Menu not showing up #49593
    Sakin
    Keymaster

    @Lisa: Can you check the following:
    1. Have you Disable Header Right Sidebar from “Appearance => Theme Options => Header Options”. As Primary menu is supposed to display in Header Right Sidebar and if you have disable it then it will not show it.
    2. Have you added any widgets in Header Right Sidebar from “Appearance => Widgets”. If so then this widget will replace the menu and you need to add menu widgets to Header Right Sidebar.

    in reply to: as removing the text… #49592
    Sakin
    Keymaster

    @alexmo: Can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box:
    #form-allowed-tags { display: none; }

    in reply to: Sticky 2nd Nav Menu #49591
    Sakin
    Keymaster

    @John U: Sorry I gave to wrong code. I forgot to remove the actions. So the code will be as below:

    // Removing the Default Action Hook
    function unhook_adventurous_functions() {
    	//remove default secondary menu
    	remove_action( 'adventurous_before_main', 'adventurous_secondary_menu', 10 );
    }
    add_action( 'init', 'unhook_adventurous_functions' );
    
    // Add Secondary menu after hgroup wrpa
    add_action( 'adventurous_after_hgroup_wrap', 'adventurous_secondary_menu', 5 );
    in reply to: Problem with translation of first featured slide #49590
    Sakin
    Keymaster

    @Pieter: We are still waiting for reply from WPML team as they need to check this. I think due to holiday session, it’s getting slow.

    in reply to: Translation problem #49557
    Sakin
    Keymaster

    @adamsh: You can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .rtl #slider-nav { right: 85%; }
    @media screen and (max-width: 960px) {	
        #pg-w549ada1fef013-0 .panel-grid-cell {
            float: none;
            text-align: center;
            width: 100%;
        }
    }
    Sakin
    Keymaster

    @paul: Post in your site URL and desire color code. Also let me know from which devices you want to remove slider.

    in reply to: Header Customize #49555
    Sakin
    Keymaster

    @egnalc: Sorry this is not possible with basic CSS in this theme. You need to hire customizer to work on it.

    in reply to: Catch Everest Pro Sliders not sliding #49541
    Sakin
    Keymaster

    @thib: Thanks for the info. Great you found our the issue.

    in reply to: Best Events plugin #49532
    Sakin
    Keymaster

    @Michael: Sorry I haven’t use it.

    in reply to: Download ver 2.3 #49527
    Sakin
    Keymaster

    @egnalc: You zip file will be in your account at http://catchthemes.com/my-account/ and if you don’t find it then you must have some issue with your account. For that you need to contact our sales and account section at http://catchthemes.com/contact-us/

    in reply to: Sticky 2nd Nav Menu #49526
    Sakin
    Keymaster

    @John U: To move the secondary menu position, first you need to build child theme, For child theme ready this http://catchthemes.com/blog/create-child-theme-wordpress/ and then you need to add the following code in your child theme functions.php file:

    // Removing the Default Action Hook
    function unhook_adventurous_functions() {
    	//remove default secondary menu
    	add_action( 'adventurous_before_main', 'adventurous_secondary_menu', 10 );
    }
    add_action( 'init', 'unhook_adventurous_functions' );
    
    // Add Secondary menu after hgroup wrpa
    add_action( 'adventurous_after_hgroup_wrap', 'adventurous_secondary_menu', 5 );
Viewing 20 posts - 5,421 through 5,440 (of 14,504 total)