Forum Replies Created

Viewing 20 posts - 9,061 through 9,080 (of 14,504 total)
  • Author
    Posts
  • in reply to: Embedding video to featured Slider #19360
    Sakin
    Keymaster

    @chris: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box to remove the faint border lines along the slides.
    .featured-slider .slides { box-shadow: none; }

    You can add the following CSS in “Appearance => Theme Options => Custom CSS” box to add a slightly lighter colored background like in the catch box theme

    #main-slider {
        background-color: #555;
        padding: 10px;
    }
    in reply to: Centralizing menu #19346
    Sakin
    Keymaster

    @Joaozinho: Sorry typo mistake in Border spelling. I have correct the css.

    The following CSS will just remove one black border:

    #branding ul.menu li { border-left: none; }
    #branding ul.menu li:first-child { border-right: 1px solid #1b4266; }
    #branding ul.menu li:last-child { border-right: none; }

    But if you want to remove both the border then you can add the following:
    #branding ul.menu li { border: none; }

    in reply to: Centralizing menu #19343
    Sakin
    Keymaster

    @Joaozinho: I don’t see the above custom css in your site. Did you add in? If yes then try clearing your cache from WP Super Cache plugin settings.

    in reply to: Theme update #19341
    Sakin
    Keymaster

    @Joaozinho: As per my knowledge it’s database connection issue not the plugin issue. Hope it will not happen again.

    in reply to: Centralizing menu #19340
    Sakin
    Keymaster

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

    #branding ul.menu li { border-left: none; }
    #branding ul.menu li:first-child { border-right: 1px solid #1b4266; }
    #branding ul.menu li:last-child { border-right: none; }
    in reply to: Theme update #19337
    Sakin
    Keymaster

    @Joaozinho: If you want to edit header.php files then you need to build child theme and edit the header.php file in your child theme. Also most of functions can be changed by adding the functions in your child theme functions.php file.

    If you are ok with the theme then you don’t necessary need to update. To update the changed files, I recommend it to test first in your test server and work on changes.

    in reply to: Embedding video to featured Slider #19333
    Sakin
    Keymaster

    @chris: Sorry Catch Everest Pro theme doesn’t have option to add video in the slider. For this you need to build child theme and edit the code. Better hire customizer for this http://catchthemes.com/hire-customizer/

    in reply to: Centralizing menu #19331
    Sakin
    Keymaster

    @Joaozinho: Can you try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #branding ul.menu {
        text-align: center;
    }
    #branding ul.menu li {
        display: inline-block;
        float: none;
    }
    in reply to: Theme update #19330
    Sakin
    Keymaster

    @Joaozinho: It’s showing error mostly connection database issue with plugin such as WordPress SEO by Yoast, WP Minify and few functions. It’s the connection between the site and database issue. Wrong information from Bluehost.

    About the update. If you haven’t customize the core theme files then the update is simple. So, we recommend to change the theme by Custom CSS box and theme options panel and for core theme function build child theme and edit it.

    in reply to: Is it possible to move primary menu #19329
    Sakin
    Keymaster

    @corinnecollins.com: Yes you can do that but it’s bit complicated. You need to create functions.php file in your child theme and add the following code:

    <?php
    /**
     * Catch Box Child Theme functions and definitions
     *
     */
    // Unhook Catch Box Theme Functions
    function unhook_catchbox_functions() {
    	remove_action( 'catchbox_after_headercontent', 'catchbox_header_menu', 10 );
    }
    add_action( 'init', 'unhook_catchbox_functions' ); 
    
    add_action( 'catchbox_before_headercontent', 'catchbox_header_menu', 5 );

    Then add the following CSS in your child theme style.css file.

    #header-content {
        clear: both;
    }
    in reply to: gravity forms and footer.php #19326
    Sakin
    Keymaster

    @Cheris: Your form have display none in code. Can you check your form settings. I can show you the proof. Just add the following CSS in “Appearance => Theme Options => Custom CSS” box. This will force your form to be displayed.
    .gform_wrapper { display: block !important; }

    in reply to: gravity forms and footer.php #19318
    Sakin
    Keymaster

    @Cheris: You forgot to add site URL. Yes, I know that you are using Gravity form plugin. But I mean how did you add the code. Is what you added shortcode in your page/post or added as widgets.

    in reply to: gravity forms and footer.php #19315
    Sakin
    Keymaster

    @Cheris: How are you adding Gravity Forms. It should work fine. We do have wp_footer() in our footer.php file. Also do send me your site URL.

    in reply to: widget to add custom nav doesn't work #19314
    Sakin
    Keymaster

    @marcella: Sorry this theme doesn’t have option to add horizontal nav in the footer. About the slider title color, I have already replied you in http://catchthemes.com/support-forum/topic/featured-post-slider-dosnt-work/

    in reply to: Featured Post Slider dosn't work #19313
    Sakin
    Keymaster

    @marcella: You can change the color code as per your need and then add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #main-slider .entry-title span { color: #222; }

    I see that you are using Catch Everest Pro version. In this case, yes you can use page slider instead of Post slider. See the theme instruction page for more details http://catchthemes.com/theme-instructions/catch-everest-pro/

    You can build custom menu from “Appearance => Menus” and can add custom links to menu. So, it can be any link.

    in reply to: Removing custom slider from pages #19312
    Sakin
    Keymaster

    @jp_grennier: I can see your Favicon. But yes, I see that the Slide Desk has been removed from Homepage and showing only in Blog page. I think you have Set static page in your “Settings => Reading”. In this case, you code will be as below:

    <?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() {
    	if ( is_front_page() ) {	
    	echo '<div id="main-slider" class="container">';
    		//Add in your code in betwwen this bracket
    		echo do_shortcode( '[SlideDeck2 id=281 ress=1]' );
    	echo '</div>';
    	}
    }
    add_action( 'catcheverest_before_main', 'catcheverest_child_slider', 10 );
    in reply to: change the read more starting position #19310
    Sakin
    Keymaster

    @Pete7feet: Try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #sidebar-top .widget_simplecatch_ads_widget,
    #sidebar-top .simplecatch_social_widget {
        clear: none;	
        display: inline;
        float: right;
        width: auto;
    }
    #sidebar-top .simplecatch_social_widget {
        margin-right: 10px;
    }
    in reply to: Featured Post Slider dosn't work #19302
    Sakin
    Keymaster

    @lorenza: Sorry this is not our theme. We only support theme by our own Theme Shop “Catch Themes”

    in reply to: Pinterest theme #19301
    Sakin
    Keymaster

    @oly: Not at this time. Ok I will add this in our list of themes to be developed.

    in reply to: change the read more starting position #19300
    Sakin
    Keymaster

    @Pete7feet: The best way will be to use any plugin which has social icons with email icon. So, you totally change that.

    Or next will be like you add image from “2_Simple Catch: Adspace Widget” just above or below the social icons in Header right sidebar and then I will send you css to align with your current social icons.

Viewing 20 posts - 9,061 through 9,080 (of 14,504 total)