Forum Replies Created

Viewing 20 posts - 8,641 through 8,660 (of 14,505 total)
  • Author
    Posts
  • in reply to: Error when I upgrade to catch everest pro #20688
    Sakin
    Keymaster

    @kissthegroom: Always update your WordPress to latest version. About 80% of WordPress site gets hacked by using old version as the loopholes has been published and fixed in latest version but vulnerable in old version.

    in reply to: Top of the page takes to mutch space (white) #20687
    Sakin
    Keymaster

    @Ken: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #hgroup { padding-top: 0; }

    Also I am bit worried about the css that you have added

    #site-title {
    font-size: 55px;
    font-family: ‘Brush Script MT’;
    font-weight:Bold;
    padding-bottom:0px;
    padding-top:0px;
    }

    This css with make font bigger in mobile devices as well. So, you can replace that with the following:

    #site-title {
    font-family: "Brush Script MT", sans-serif;
    font-weight: bold;
    padding-bottom: 0;
    padding-top: 0;
    }
    @media screen and (max-width: 769px) {
    font-size: 55px;
    }
    in reply to: How To Disable The Header Image Link? #20676
    Sakin
    Keymaster

    @tim6007: I just showed you the code. There you need to remove the link. If you want to remove link then replace previous code with the following

    <?php 
    /**
     * Template for Header Image
     *
     * To override this in a child theme
     * simply create your own catchbox_header_image(), and that function will be used instead.
     *
     * @since Catch Box 2.5
     */
    function catchbox_header_image() {
    	
    	// Check to see if the header image has been removed
    	global $_wp_default_headers;
    	$header_image = get_header_image();
    	if ( ! empty( $header_image ) ) : ?>
        
        	<div id="site-logo">
            	<img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" />
          	</div>
            
    	<?php endif; // end check for removed header image 	
    }
    in reply to: Logo in Main Menu #20675
    Sakin
    Keymaster

    @David: Yes for that you need to build child theme and work on header.php file or do it with the action hook from functions.php file.

    in reply to: Help with Images In Catch Everest #20672
    Sakin
    Keymaster

    @wirkstattnatur: Thanks for our appreciation.

    in reply to: Logo in Main Menu #20670
    Sakin
    Keymaster

    @David: Can you explain bit more. What type of image are you trying to add in? Actually it’s not possible. You need to build child theme and add in. But if you just want to add icons then you can add it through css. Upload the image in your site and send me the image url. Then I will check in what can be done.

    in reply to: Help with Images In Catch Everest #20669
    Sakin
    Keymaster

    @wirkstattnatur: Looks like there is conflict with the plugin you have installed. Can you deactivate cyclone-slider-2 and check in.

    in reply to: How To Disable The Header Image Link? #20667
    Sakin
    Keymaster

    @tim6007: After you create child theme, you need to reassign header image from “Appearance => Header”

    in reply to: Featured Post Slider Questions #20663
    Sakin
    Keymaster

    @CinnamonEarth: Great that it worked for your. Maybe you got confused with Catch Box theme. Cheers 🙂

    in reply to: Google Structured Data Tool #20659
    Sakin
    Keymaster

    @Maxim: Sorry I won’t be able to add that in Forum. But yes it will be added in Change log page and also through our facebook and twitter.

    in reply to: Remove White Space For Site Title and more #20657
    Sakin
    Keymaster

    @luismarioochoa: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box. You can change the padding as per your need to reduce the white space.

    /* For Site Title center alignment */
    #header-left {
        text-align: center;
        width: 100%;
    }
    @media screen and (min-width: 769px) {
    /* For Top Padding */
    #hgroup { padding-top: 50px; }
    /* For Bottom Padding */
    #hgroup-wrap { padding-bottom: 50px; }
    }
    in reply to: Google Structured Data Tool #20652
    Sakin
    Keymaster

    @Maxim: Google Structure Data is additional feature in the Theme. So, we need to add that support. If you see that Catch Box themes http://catchthemes.com/themes/catch-box-pro/, it’s clearly mentioned in the Features as “Valid Google Structured Data”. But Simple Catch Pro is not. We will be adding it one by one in all the themes. So, please wait for the time. Sorry for that.

    in reply to: Remove White Space For Site Title and more #20651
    Sakin
    Keymaster

    @luismarioochoa: Bit confused with your questions. Can you send me your site URL, so that I can visualized it.

    in reply to: no sidebar layout #20650
    Sakin
    Keymaster

    @mahinda: Yes, I got the setting you have choose. I just added the css and it’s working fine for me. You just need to increase the width as per you need. For example, if you want 900px width then it will be as

    @media screen and (min-width: 961px) {	
    	.no-sidebar #primary { width: 900px; }
    }
    in reply to: Change Current Page Mini Menu Styling #20649
    Sakin
    Keymaster

    @s-design: Oh sorry this is not possible with this code of menu. But there is one trick as you are just using Primary Menu.

    Just go to “Appearance => Theme Options => Responsive Design”. Then uncheck “Enable Footer Menu in Mobile Deveices?” and Save Changes. Then this will display the page name in the Place of Main Menu.

    in reply to: How To Disable The Header Image Link? #20647
    Sakin
    Keymaster

    @tim6007: I think you missed the closing bracket } . Please check the code with the above mentioned code.

    in reply to: no sidebar layout #20637
    Sakin
    Keymaster

    @mahinda: What is the width that you want to increase to and also send me your site URL so that I can check in what is not working.

    in reply to: How To Disable The Header Image Link? #20634
    Sakin
    Keymaster

    @tim6007: Thanks for your appreciation and to remove the link from custom header. First you need to build child theme. Then you need to create functions.php file in your child theme and add the following code.

    <?php 
    /**
     * Template for Header Image
     *
     * To override this in a child theme
     * simply create your own catchbox_header_image(), and that function will be used instead.
     *
     * @since Catch Box 2.5
     */
    function catchbox_header_image() {
    	
    	// Check to see if the header image has been removed
    	global $_wp_default_headers;
    	$header_image = get_header_image();
    	if ( ! empty( $header_image ) ) : ?>
        
        	<div id="site-logo">
            	<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
                    <img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" />
                </a>
          	</div>
            
    	<?php endif; // end check for removed header image 	
    }
    in reply to: Change Current Page Mini Menu Styling #20633
    Sakin
    Keymaster

    @s-design: Can you post in your site URL and let me know what you want to change to current page in mobile menu.

    in reply to: Error when I upgrade to catch everest pro #20632
    Sakin
    Keymaster

    @kissthegroom: This is strange. Are you using Old version of WordPress. If you are using older version of WordPress then first update your WordPress to latest version and then you can install the Catch Everest Pro theme.

    wp_get_theme() function was introduced in WordPress 3.4 version.

Viewing 20 posts - 8,641 through 8,660 (of 14,505 total)