Forum Replies Created

Viewing 20 posts - 9,061 through 9,080 (of 14,494 total)
  • Author
    Posts
  • 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.

    in reply to: Social buttons #19294
    Sakin
    Keymaster

    @mpetric: It’s very difficult to send you the css without checking your site URL. So, I assumed the following CSS will work fine for you.
    #site-description { line-height: 1.6em; }

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

    @Pete7feet: If you see our gallery page http://kleintjeklus.pressmill.nl/fotos/ where you have added image with flickr gallery plugin. So, you need to check in with the plugin support forum.

    in reply to: Explorer 8 #19291
    Sakin
    Keymaster

    @oly: I check in form real IE9 and IE10. But working fine without any issue. I don’t know why netrenderer.com is showing issue in IE9. But I cannot check in IE8 as it’s too old browser and not supported. I will try to get IE8 and check in.

    in reply to: Widgets for Facebook and Twitter have stopped working #19290
    Sakin
    Keymaster

    @aruraza: I just check in your site and see that Facebook widget is working fine. But yes twitter widgets is not working. You can install “Jetpack” plugin and then activate “Extra Sidebar Widgets” which will add extra widgets like Facebook Likebox, Twitter Timeline and so on. So, you can just go to “Appearance => Widgets” and add the widgets as per your need.

    When you activate the Jetpack plugin, make sure “Mobile Theme” module is disable.

    in reply to: Adding more Social Icons #19289
    Sakin
    Keymaster

    @Michael: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box and your custom image will align with the social icons.

    #sidebar-header-right .widget_sp_image {
        clear: none;
        display: inline;
        float: left;
        margin-right: 10px;
    }
    in reply to: Home page post view with images #19287
    Sakin
    Keymaster

    @michael: I see that you forgot to add “Featured Image” in your post. Just add featured image and it will show exactly like in demo page with images.

    in reply to: Big picture only home/landing/front page #19272
    Sakin
    Keymaster

    @ravart: Ok you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #branding { display: none; }
    .home #branding { display: block; }

    After you add this, you need to clear your cache form your WP Super Cache plugin settings.

    in reply to: Images outside content area #19271
    Sakin
    Keymaster

    @Richard: Can you try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #content article { height: 1%; overflow: hidden; }

    in reply to: Big picture only home/landing/front page #19269
    Sakin
    Keymaster

    @ravart: I just check in your site and couldn’t find big picture in it. So, I am bit confused. Can you explain please.

    in reply to: Social buttons #19268
    Sakin
    Keymaster

    @mpetric: Ok so how about the linespacing screenshots? and by how much you want to increase it.

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