Forum Replies Created

Viewing 20 posts - 9,701 through 9,720 (of 14,504 total)
  • Author
    Posts
  • in reply to: Header Sidebars #17324
    Sakin
    Keymaster

    @Sarah: So, you want in this order right
    1. Logo
    2. Site Title and Description
    3. Header Right Sidebar

    1. For that go to “Appearance => Header”, there you have to check in “Show header text with your image” and then you can add site title and tagline text from “Settings => General”
    2. Then add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 961px) {	
    #hgroup.with-logo {
        clear: none;
        float: left;
        max-width: 50%;
    }
    }
    
    in reply to: Use image for background #17323
    Sakin
    Keymaster

    @calvinocampo123: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #main { background-color: transparent; }

    in reply to: Social icons in site-info #17322
    Sakin
    Keymaster

    @GinaL: Sorry I cannot get that. Please use Hire a Customizer.

    in reply to: How to align site title and description to the center #17318
    Sakin
    Keymaster

    @owen: Send me your site URL and then I will check in.

    in reply to: Theme Options Menu not working #17317
    Sakin
    Keymaster

    @aroma-bobman: I check in your server and found that there was issue in your new server. It doesn’t accept the js name cookie. So, it blocked our js file jquery.cookie.min.js . This is ModSecurity issue. You can check with your hosting server to check on ModSecurity in order to work normal.

    in reply to: featured content issue #17310
    Sakin
    Keymaster

    @jp_grennier: First, you shouldn’t edit any core theme files such as functions.php, style.css and so on. As all your edit will be reverted back when you update your theme to latest version. So, if you want to edit any core theme file then you have to build child theme and work on it there.

    You have changed the structure so it will be difficult the restore the css. As the divs has been moved.

    To build child theme you can just create folder in your themes directory and name it like catch-everest-child or anything as per your wish. Then first you need to create style.css file and then add the code like this https://gist.github.com/catchthemes/7483260/raw/0d66c5a1c43d188e1e548500c976b3f1bf28cfed/style.css

    And then create functions.php file where you need to add code to remove the default slider and replace it with your new slider code. Here is the sample code that you need to add in your functions.php file

    <?php
    // Removing the Default Slider
    function unhook_catcheverest_functions() {
    
    	remove_action( 'catcheverest_before_main', 'catcheverest_slider_display', 10 );
    }
    add_action( 'init', 'unhook_catcheverest_functions' );
    
    // Adding New Slider Code
    function catcheverest_child_slider() {
    	//Add in your code in betwwen this bracket
    	echo '<div id="main-slider" class="container">New Slider Code</div>';
    	
    }
    add_action( 'catcheverest_before_main', 'catcheverest_child_slider', 10 );
    in reply to: Excludes Posts From Searches #17299
    Sakin
    Keymaster

    @fcharvet: I don’t get it what are you trying to do it. Why do you want to exclude posts from search. Search is added to search posts.

    in reply to: Changing space between paragraphs #17298
    Sakin
    Keymaster

    @Sarah: You can try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
    ins.adsbygoogle { padding-bottom: 30px; }

    in reply to: Pinterest Pin #17294
    Sakin
    Keymaster

    @klhaight: By the way which plugin are you using? Are you using this plugin wordpress.org/plugins/pinterest-pin-it-button-for-images

    in reply to: Social icons in site-info #17284
    Sakin
    Keymaster

    @GinaL: You shouldn’t add all codes in you child theme. Child theme is a place where you add the additional codes needed. As child theme automatically take the parent theme codes and no need to add it again.

    You can add the following CSS in your Child Theme style.css

    .catchwebtools-social {
        display: block;
        float: right;
        margin: 0;
    }
    in reply to: Social icons in site-info #17282
    Sakin
    Keymaster

    @GinaL: Look at the code I gave you. I haven’t told you to change anything in custom header. Just build child theme and in your child theme functions.php file you need to add the following code.

    if ( function_exists( 'catchwebtools_get_social_icons' ) ) :
    	add_action( 'catcheverest_site_generator', 'catcheverest_child_social', 5 );
    endif;
    
    function catcheverest_child_social() {
    	echo catchwebtools_get_social_icons();	
    }
    in reply to: featured post slider doesn't show on homepage #17280
    Sakin
    Keymaster

    @Stefing: Yes you can active default theme file twenty thirteen and then delete Catch Everest and then reinstall it.

    in reply to: Social icons in site-info #17279
    Sakin
    Keymaster

    @GinaL: Yes in your child theme functions.php file

    in reply to: featured post slider doesn't show on homepage #17278
    Sakin
    Keymaster

    @rawb_in: For Catch Everest Free theme footer widgets, you need to build child theme and just copy footer.php from Catch Everest theme to your child theme and the replace the code
    get_sidebar( 'footer' );
    with the following:
    if ( is_front_page() || is_home() ) : get_sidebar( 'footer' ); endif;

    in reply to: Remove footer area space #17276
    Sakin
    Keymaster

    @@Lorena Poling: To remove the box from those, image you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #featured-post img.wp-post-image { box-shadow: none; }

    Then about the gap, you are using 3 columns where as in your reference site, it’s 4 columns. So, the gap cannot be same.

    in reply to: Social icons in site-info #17274
    Sakin
    Keymaster

    @GinaL: So, you are using Catch Web Tools Plugin and Child theme of Catch Everest Free Theme. Then you can add the following code in your child theme functions.php file are as below:

    if ( function_exists( 'catchwebtools_get_social_icons' ) ) :
    	add_action( 'catcheverest_site_generator', 'catcheverest_child_social', 5 );
    endif;
    
    function catcheverest_child_social() {
    	echo catchwebtools_get_social_icons();	
    }
    in reply to: Header Sidebars #17273
    Sakin
    Keymaster

    @Sarah: That is why I gave you the css and the instruction. You need to follow both as this is bit complex. If you have difficulty adding it then use hire customizer.

    in reply to: Hide menu bar link on mobile? #17272
    Sakin
    Keymaster

    @jpbertram: I don’t think CSS can work in it. As there is different styled menu in mobile devices. Try hiring customizer at http://catchthemes.com/hire-customizer/

    in reply to: Homepage Featured content options #17270
    Sakin
    Keymaster

    @cpuss: For detail customization, please Hire Customizer http://catchthemes.com/hire-customizer/

    If need to manually add custom css for each widgets. So, it can be as below:

    #header-right .widget.widget_catcheverest_social_widget {
    	float: left; 
    }
    #header-right .widget.widget_polylang, 
    #header-right .widget.widget_search { 
    	clear: none; float: left; 
    }
    in reply to: Theme Options Menu not working #17268
    Sakin
    Keymaster

    @aroma-bobman: What is different in this new site? Maybe there in conflicting plugin. Can you try disabling plugin and check in.

    If that is still not working then I need to check in your site admin and I will email you where you can send me the access.

Viewing 20 posts - 9,701 through 9,720 (of 14,504 total)