Forum Replies Created

Viewing 20 posts - 8,461 through 8,480 (of 14,497 total)
  • Author
    Posts
  • in reply to: Border Size #21315
    Sakin
    Keymaster

    @BenniemanZA: So what he want? Can you be more specific about the width. For larger width theme, check our Catch Kathmandu theme http://catchthemes.com/demo/catch-kathmandu/ . You can either user Free version or pro version of it.

    in reply to: Missing headers #21314
    Sakin
    Keymaster

    @jmb500: I just tested our site with Dancing Script Google font in “Appearance => Theme Options => Font Family Options => Headings Font Family”. It’s working fine. I suspect some other issues. I will email you to check in details.

    in reply to: No featured thumbnail issue on Facebook share of homepage #21312
    Sakin
    Keymaster

    @Keren: That’s cool.

    in reply to: Android Browser Issues #21299
    Sakin
    Keymaster

    @Nancy: Ok now let’s try to reduce the spaces by reducing the padding. The following css will change from 20 to 15. I hope this will fix it. Your browser is taking static width for the menu item and this is strange.
    #header-menu ul.menu a { padding: 0 15px; }

    in reply to: Post excerpts within main content area? #21298
    Sakin
    Keymaster

    @craiginthebox: I told you that you are not supported to create page template. You just need to add home as page. So, you need to go to “Settings => Reading” and select your page to show in homepage from “Front page displays => A static page” and then in your child theme create the file name front-page.php and here goes the sample code for the file.
    https://gist.github.com/anonymous/05b0588726655f11c326#file-front-page-php

    in reply to: Home page featured content photos #21297
    Sakin
    Keymaster

    @aeriformarts: It’s bit strange as it’s working on our site. Ok I will contact you in email for detail review. When you upload the media, did you check in “Link URL”, it should be “File URL” and not “None”, then you can click on “Insert Into Post”.

    For detail review, please reply via email.

    in reply to: Search Text Box Size #21294
    Sakin
    Keymaster

    @delboorman: The following CSS will make the width of Header Search Box to 190px always.
    .header-sidebar #s, .header-sidebar #s:focus { width: 190px; }

    in reply to: Custom Social Media Icons #21293
    Sakin
    Keymaster

    @delboorman: You can add the following css. But you have customized site a lot so I am not 100% sure that it will work fine or not.

    /* To fix the custom social icon size  */
    ul.social-profile li {
      height:33px;
      width:33px;
    }
    /* To the margin of Footer Widgets  */
    #footer-sidebar .widget {
        margin: 0;
    }
    /* To increase the padding of social icon  */
    #footer-sidebar .widget_catcheverest_social_widget {
        padding-top: 45px;
    }
    /* To Make social icon in float right */
    #footer-sidebar ul.social-profile {
        float: right;
    }
    /* To Hide Site Footer Info */
    #site-generator {
        display: none;
    }
    in reply to: No featured thumbnail issue on Facebook share of homepage #21292
    Sakin
    Keymaster

    @Keren: I just check in your site and see that you have setup blank image from Jetpack plugin. I found this <meta property="og:image" content="http://wordpress.com/i/blank.jpg" />
    You can test your site https://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fhis-israel.com%2F

    Change that image from ‘http://wordpress.com/i/blank.jpg&#8217; to whatever you desire and will be solved. Look for setting in your JetPack plugin. As this image is from Jetpack plugin.

    in reply to: Post Body Content not showing up #21291
    Sakin
    Keymaster

    @ourag: Yes I got it and I found the problem plugin. That is “Mashshare Share Buttons” plugin. Now, your site is showing content.

    in reply to: Post Body Content not showing up #21278
    Sakin
    Keymaster

    I have already send you an email at contact[at]ourag[dot]com

    in reply to: Post Body Content not showing up #21277
    Sakin
    Keymaster

    @ourag: I don’t get it what are you trying to do with the code paste. I have also emailed you. For code sharing you can reply me there.

    in reply to: Post Body Content not showing up #21274
    Sakin
    Keymaster

    @ourag: Have you customize the theme. If not then I suspect plugin conflict with the theme. Try disabling plugin and check in. I will also email you so that we can discuss about it in detail.

    in reply to: Android Browser Issues #21265
    Sakin
    Keymaster

    @Nancy: Can you try adding in the following.

    #header-menu #access ul.menu li, #header-menu #access ul.menu li a {
        display: inline-block;
    }
    in reply to: Post Body Content not showing up #21264
    Sakin
    Keymaster

    @ourag: Can you add in long content post and send me the url? As when I check in your post http://www.ourag.com/?p=318, you have post with content. If you have longer post content then only you will see Continue Reading

    in reply to: Custom Social Media Icons #21263
    Sakin
    Keymaster

    @delboorman: For header right you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #header-right {
        max-width: 350px;
    }

    But for footer, you can just use 2 footer sidebars and it will be fixed. So, just remove empty text widgets from Footer Area Two in “Appearance => Widgets”

    in reply to: After upgrade url links in posts do not work #21262
    Sakin
    Keymaster

    @ekkel: That’s strange as we haven’t change anything in that level. Maybe you have also install or update plugin recently. Try disabling plugin and test it. As I just tested with Catch Box post and it’s working fine in our side.

    in reply to: Featured post slider #21261
    Sakin
    Keymaster

    @varaani: There is no option to add text area between header image and featured post slider. For that you need to create child theme and do the customization.

    Sorry I don’t understand your second question.

    in reply to: Two H1 tag.. #21252
    Sakin
    Keymaster

    @telexesposito: I think you should better hire customizer to do advance coding. For now I am adding the code for you which replaces <h1 class="logo-wrap"> to <div class="logo-wrap">

    <?php
    /**
     * Get the header logo Image from theme options
     *
     * @uses header logo 
     * @get the data value of image from theme options
     * @display Header Image logo
     *
     * @uses default logo if logo field on theme options is empty
     *
     * @uses set_transient and delete_transient 
     */
    function simplecatch_headerdetails() {
    	delete_transient( 'simplecatch_headerdetails' );	
    
    	global $simplecatch_options_settings;
        $options = $simplecatch_options_settings;	
    		
    	if ( ( !$simplecatch_headerdetails = get_transient( 'simplecatch_headerdetails' ) ) && ( !empty( $options[ 'featured_logo_header' ] ) || empty( $options[ 'remove_site_title' ] ) || empty( $options[ 'remove_site_description' ] ) ) ) {
    		echo '<!-- refreshing cache -->';
    		$simplecatch_headerdetails = '<div class="logo-wrap">';		
    		if( empty ($options[ 'remove_header_logo' ] ) ) {
    			$simplecatch_headerdetails .= '<div id="site-logo"><a href="'.esc_url( home_url( '/' ) ).'" title="'.esc_attr( get_bloginfo( 'name', 'display' ) ).'">';
    			
    				// if not empty featured_logo_footer on theme options
    				if ( !empty( $options[ 'featured_logo_header' ] ) ) :
    					$simplecatch_headerdetails .= '<img src="'.esc_url( $options[ 'featured_logo_header' ] ).'" alt="'.get_bloginfo( 'name' ).'" />';
    				else:
    					// if empty featured_logo_footer on theme options, display default Header Logo
    					$simplecatch_headerdetails .='<img src="'. get_template_directory_uri().'/images/logo-head.png" alt="logo" />';
    				endif;
    			
    			$simplecatch_headerdetails .= '</a></div>';
    		}			
    
    		if( empty( $options[ 'remove_site_title' ] ) || empty( $options[ 'remove_site_description' ] ) ) {
    			$simplecatch_headerdetails .= '<div id="site-details">';
    			
    			if ( empty( $options[ 'remove_site_title' ] ) ) {
    				$simplecatch_headerdetails .= '<h1 id="site-title"><a href="'.esc_url( home_url( '/' ) ).'" title="'.esc_attr( get_bloginfo( 'name', 'display' ) ).'">'.esc_attr( get_bloginfo( 'name', 'display' ) ).'</a></h1>'; 
    			}
    			
    			if ( empty( $options[ 'remove_site_description' ] ) ) {
    				$simplecatch_headerdetails .= '<h2 id="site-description">'.esc_attr( get_bloginfo( 'description' ) ).'</h2>';		
    			}	
    			
    			$simplecatch_headerdetails .= '</div><!-- .site-details -->';	
    		}
            $simplecatch_headerdetails .= '</div><!-- .logo-wrap -->';	
    		
    	set_transient( 'simplecatch_headerdetails', $simplecatch_headerdetails, 86940 );
    	}
    	echo $simplecatch_headerdetails;	
    }
    in reply to: Android Browser Issues #21237
    Sakin
    Keymaster

    Ok one more test. Can you click on admission page and check it. I want to check if this is issue when selecting current page.

Viewing 20 posts - 8,461 through 8,480 (of 14,497 total)