Forum Replies Created

Viewing 20 posts - 8,501 through 8,520 (of 14,497 total)
  • Author
    Posts
  • in reply to: Add a new per-page template #21185
    Sakin
    Keymaster

    @billm: For detail customization please user Hire a customizer. As you need to add body_class or you need to add css to support your new template.

    in reply to: Home Page Text Color same as Background Color #21184
    Sakin
    Keymaster

    @kevin.murray: SO has it been fixed in your server. Yes, Open Sans is Google Font and is loading from google

    in reply to: three column sidebar #21182
    Sakin
    Keymaster

    @Mark: Yes three columns layout means you have 2 columns for sidebar and 1 column for your content. See the following demo pages
    Page with left and right sidebar: http://catchthemes.com/demo/catch-evolution/three-columns-layout-wordpress-themes/
    Page with both sidebar on right: http://catchthemes.com/demo/catch-evolution/three-columns-layout-wordpress-themes-2/

    in reply to: Featured Image Slider Images Snapping in to place #21180
    Sakin
    Keymaster

    @Nancy: It’s the effect. But if don’t want to right. Then you add the following CSS in “Appearance => Theme Options => Custom CSS” which will hide overflow.
    #primary { overflow: hidden; }

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

    @telexesposito: You can just copy the following code in your child theme functions.php file and edit as per your need.

    <?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 .= '<h1 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></h1>';
    		}			
    
    		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: Homepage Button target="_blank" #21177
    Sakin
    Keymaster

    @jabbadu: Are you talking about the button in Homepage Headline? There is no option at this stage to change it. But you can change it by customizing the catchkathmandu_homepage_headline function in your child theme. So, first build child theme and create functions.php file in your child theme and then add the following code

    <?php 
    /**
     * Template for Homepage Headline
     *
     * To override this in a child theme
     * simply create your own catchkathmandu_homepage_headline(), and that function will be used instead.
     *
     * @uses catchkathmandu_before_main action to add it in the header
     * @since Catch Kathmandu Pro 1.0
     */
    function catchkathmandu_homepage_headline() { 
    	//delete_transient( 'catchkathmandu_homepage_headline' );
    	
    	global $post, $wp_query, $catchkathmandu_options_settings;
       	$options = $catchkathmandu_options_settings;
    	
    	// Getting data from Theme Options
    	$disable_headline = $options[ 'disable_homepage_headline' ];
    	$disable_subheadline = $options[ 'disable_homepage_subheadline' ];
    	$disable_button = $options[ 'disable_homepage_button' ];
    	$homepage_headline = $options[ 'homepage_headline' ];
    	$homepage_subheadline = $options[ 'homepage_subheadline' ];
    	$homepage_headline_button = $options[ 'homepage_headline_button' ];
    	$homepage_headline_url = $options[ 'homepage_headline_url' ];
    	
    	// Front page displays in Reading Settings
    	$page_on_front = get_option('page_on_front') ;
    	$page_for_posts = get_option('page_for_posts'); 
    
    	// Get Page ID outside Loop
    	$page_id = $wp_query->get_queried_object_id();
    
    	 if ( ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) && ( empty( $disable_headline ) || empty( $disable_subheadline ) ) ) { 	
    		
    		if ( !$catchkathmandu_homepage_headline = get_transient( 'catchkathmandu_homepage_headline' ) ) {
    			
    			echo '<!-- refreshing cache -->';	
    			
    			$catchkathmandu_homepage_headline = '<div id="homepage-message" class="container"><div class="left-section">';
    			
    			if ( $disable_headline == "0" ) {
    				$catchkathmandu_homepage_headline .= '<h2>' . sprintf( __( '%s', 'catchkathmandu' ) , $homepage_headline ) . '</h2>';
    			}
    			if ( $disable_subheadline == "0" ) {
    				$catchkathmandu_homepage_headline .= '<p>' . sprintf( __( '%s', 'catchkathmandu' ) , $homepage_subheadline ) . '</p>';
    			}			
    			
    			$catchkathmandu_homepage_headline .= '</div><!-- .left-section -->';  
    			
    			if ( !empty ( $homepage_headline_url ) && $disable_button == "0" ) {
    				$catchkathmandu_homepage_headline .= '<div class="right-section"><a href="' . $homepage_headline_url . '" target="_self">' . $homepage_headline_button . '</a></div><!-- .right-section -->';
    			}
    			
    			$catchkathmandu_homepage_headline .= '</div><!-- #homepage-message -->';
    			
    			set_transient( 'catchkathmandu_homepage_headline', $catchkathmandu_homepage_headline, 86940 );
    		}
    		echo $catchkathmandu_homepage_headline;	
    	 }
    }
    in reply to: Two H1 tag.. #21175
    Sakin
    Keymaster

    @telexesposito: You need to build child theme and then create functions.php file in your child theme and copy simplecatch_headerdetails function code from simplecatch_functions.php file to your child theme functions.php file and edit it as per you need.

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

    @aeriformarts: You can go to “Appearance => Theme Options => Homepage Settings => Homepage Featured Content Options”. Then in image, you can directly add in the image URI or click on “Add Image”, then you can either upload it form your computer or from media uploader. After you upload the image, you need to click on “Insert into Post”. See this screenshot http://www.pinterest.com/pin/548594798329798533/

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

    @cpuss: You have customize the theme a lot and it’s difficult to track it down. When I check in your site you have menu transparent. Also there is one css that you might want to change
    #header-menu { background-color: transparent; }

    in reply to: header featured image options #21172
    Sakin
    Keymaster

    @Steve: First, I see that you are using “Header Featured Image” instead of “Header Image” for logo. The best option it to user Header image for logo, you can add that from “Appearance => Header”. This Header Featured Image is for adding extra featured image like banner and all.

    But if you like to control this Image then you can use the CSS ID main-feat-img. SI see that you have added the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #main-feat-img {
        box-shadow: none; /* Remove Border */
        float: left; /* Float Left */
        padding-top:50px;
        padding-bottom:0px;
        padding-right:0px;
        padding-left:50px;
    }

    To center you need to remove float: left; /* Float Left */ and padding-left:50px; from the above css. Since, you are not using Header Image and site titles you can hide that by adding in the following css
    #hgroup-wrap { display: none; }

    in reply to: Featured Image Slider Images Snapping in to place #21171
    Sakin
    Keymaster

    @Nancy: when I check in your site, it’s working perfectly. After you resize your browser you need to wait for a bit so that slider takes it’s shape.

    in reply to: problem on home page when installed… #21169
    Sakin
    Keymaster

    @shazcat: Thanks for your appreciation.

    in reply to: three column sidebar #21147
    Sakin
    Keymaster

    @Mark: For three columns layout. First you need to choose the layout from “Appearance => Theme Options => Layout Options => Default Layout” and then you need to add widgets in “Third Column Sidebar” from “Appearance => Widgets”.

    Yes, the lest sidebar will be smaller then the right sidebar. If you want same size then do let me know the size that you want to make it with your Site URI and then I will send your the custom css.

    in reply to: social media icons #21146
    Sakin
    Keymaster

    @Mark Argentino: Thanks Mark for your appreciation. Have a nice day.

    in reply to: remove default border from images #21145
    Sakin
    Keymaster

    @Michael Vigue: You need to add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .site { box-shadow: none; }

    in reply to: Centering Social Icons with Footer Text #21144
    Sakin
    Keymaster

    @Nancy: After you added social icon and text in the right. The Copyright information width is not enough so it floated below. You can try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 769px) {
    #site-generator .copyright { width: 40%; }
    }
    in reply to: Photo Credit Help #21129
    Sakin
    Keymaster

    @Bouncedancer: Thanks and for RSS to show up as widget, there is default RSS widgets that you can add it from “Appearance => Widgets”.

    in reply to: social media icons #21128
    Sakin
    Keymaster

    @Mark Argentino: All the changes from Theme Options panel and child theme is all good. You will not loose your customization. Only core theme files such as functions.php, index.php, style.css and so on is not allowed to change directly. If changed directly you will loose it when you update the theme. You can change any function of parent theme with your child theme.

    in reply to: Centering Social Icons with Footer Text #21127
    Sakin
    Keymaster

    @Nancy: That is because when you add social icon in footer. It will push copyright down. Can you share screenshot of what you want. Then I can suggest you the css.

    in reply to: Tables & Borders #21126
    Sakin
    Keymaster

    @Nancy: I not that sure about it. But have seen plugin with adds responsive columns and also when you add table the code has to be responsive. So, either use responsive columns plugin or responsive tables plugin. I see the table code used in http://www.ipcrew.com/SHSTest/admissions/whyshs/ is not responsive and it’s of fixed width.

    You can search for free plugins at http://wordpress.org/plugins/

Viewing 20 posts - 8,501 through 8,520 (of 14,497 total)