Forum Replies Created

Viewing 20 posts - 6,621 through 6,640 (of 14,504 total)
  • Author
    Posts
  • in reply to: Hidden #42740
    Sakin
    Keymaster

    @ashrafashraf: Go to your Custom CSS box and replace the code

    @media screen and (max-width: 960px) {
    .social-profile {display: none;}
        #site-generator { padding-top: 220px; }
    }

    With the following

    @media screen and (max-width: 960px) {
        .social-profile, .social-icons {display: none;}
        #site-generator { padding-top: 220px; }
    }
    in reply to: Remove page titles from body of page #42736
    Sakin
    Keymaster

    @Romany: Then you can add extra css just below that which will force to display tile in home.
    .home.page .entry-title { display: block; }

    in reply to: How to decrease space in between widgets on R sidebar? #42735
    Sakin
    Keymaster

    Hi Kim,

    You can add the following css in “Appearance => Theme Options => Custom CSS” box.
    #secondary .widgetimg { margin-bottom: 0; }

    Regards,
    Sakin

    in reply to: Changing the position and font color of a footer-menu #42726
    Sakin
    Keymaster

    @Kath: Strange, can you refresh and check in or click here

    in reply to: Having just feature content and slider #42711
    Sakin
    Keymaster

    1. Please follow the instruction carefully. I already told you if you don’t have “Open in New Window/Tab”, then in menu screen go to “Screen Option” and check in Link target. Then I share with you the screenshot showing how to do that. See this screenshot http://www.pinterest.com/pin/548594798329843253/
    2. About the home menu, I already told you to watch this video http://catchthemes.com/blog/videos-blog/video-series-creating-wordpress-custom-menus/
    3. For comment best option is to upgrade to pro version. For free we are not allowed to change as per the WordPress.org theme review guideline. You need to manually remove in all your old post and old pages. But for new post/page, you can just go to “Settings => Discussion” from your WordPress Dashboard and then in “Default article settings” uncheck “Allow link notifications from other blogs (pingbacks and trackbacks)” and “Allow people to post comments on new articles”

    If you want more help, then please consider hiring customizer at http://catchthemes.com/hire-customizer/

    in reply to: Having just feature content and slider #42706
    Sakin
    Keymaster

    Hi Phil,

    1. I see that you are talking about opening you custom link in menu to new window. This is pretty simple. Go to “Appearance => Menus” and then edit your menu and then check in “Open Link in New Window/tab”. If you don’t need this option then check your screen options. See this screenshot http://www.pinterest.com/pin/548594798330834738/
    2. Oh sorry the comment option is only there in Pro version. In free theme, you need to manually edit your page/post and then remove comment from there. See this screenshot http://www.pinterest.com/pin/548594798329843253/
    3. I don’t know how you have added your home in menu. You home item in menu is linked to http://rice.voyage/wordpress/home-3/, You can change to http://rice.voyage/wordpress/. See this to see how you can add home. http://catchthemes.com/blog/videos-blog/video-series-creating-wordpress-custom-menus/

    Regards,
    Sakin

    in reply to: H1 and h2 headers #42702
    Sakin
    Keymaster

    @Bouncedancer: Sorry I don’t get it what you mean. Do you mean the Post and Page main title. Then yes it’s build in HTML5 where each <article> section need one main H1 tag. So, we have Page and Post title as H1 tag.

    in reply to: Changing the position and font color of a footer-menu #42700
    Sakin
    Keymaster

    @Kath: Sorry for detail if you cannot solve it then consider hiring customizer http://catchthemes.com/hire-customizer/.

    Ok I will explain it more:
    1. You can download the sample Catch Everest Child theme from http://catchthemes.com/blog/create-child-theme-wordpress/
    2. Then you can copy the code from https://gist.github.com/catchthemes/d7c8e39c6490c80b3eca and paste it in your child theme functions.php file.
    3. Then add the css that I gave you in your chid theme style.css file just below the code

    /* =Child Theme Custom CSS
    -------------------------------------------------------------- */
    in reply to: Evolution ProTheme not updating #42688
    Sakin
    Keymaster

    @Tasha” No you don’t need to delete the old version if you have installed Catch Updater plugin. Check this out http://catchthemes.com/wp-plugins/catch-updater/

    Sorry for the misunderstanding. I will personally email you if you need help in updating process.

    in reply to: Having just feature content and slider #42663
    Sakin
    Keymaster

    To remove your gallery page from your homepage, you need to go to “Settings => Readings” and in “Front page displays” click on “Your latest posts” and Save Changes.

    Then go to “Appearance => Theme Options => Homepage / Fontpage Settings” and Check to disable in “Disable Latest Posts” and save changes.

    To remove comment in pages, you can go to “Appearance => Theme Options => Comments Options”

    in reply to: Having just feature content and slider #42662
    Sakin
    Keymaster

    the address that you have in bottom footer left it from “Appearance => Widgets” and check in Footer Areas

    in reply to: Having just feature content and slider #42659
    Sakin
    Keymaster

    Hi to open to image in new window. There is no option. But you can use HTML code to make it open in new window. See this HTML hyperlink tutorial http://www.w3schools.com/html/html_links.asp

    So, now what you do is. Just edit that page and then click on “Visual Mode” and add target="_blank" in your hyperlink.

    For example, your fist image code is
    <a href="http://rice.voyage/wordpress/wp-content/uploads/2014/03/1.jpg"><img width="1350" height="844" class="aligncenter size-full wp-image-380" alt="1" src="http://rice.voyage/wordpress/wp-content/uploads/2014/03/1.jpg"></a>
    Replace this with the following
    <a href="http://rice.voyage/wordpress/wp-content/uploads/2014/03/1.jpg" target="_blank"><img width="1350" height="844" class="aligncenter size-full wp-image-380" alt="1" src="http://rice.voyage/wordpress/wp-content/uploads/2014/03/1.jpg"></a>

    in reply to: Changing the position and font color of a footer-menu #42658
    Sakin
    Keymaster

    Hi Kath,

    If you upgrade to Catch Everest Pro version, then you will get Footer Menu. But if you want this in free theme. Then first you need to build child theme http://catchthemes.com/blog/create-child-theme-wordpress/. You shouldn’t edit any core theme file inside catch-everest theme directory, as these files will be reverted back to original when you update or upgrade the theme.

    First build child theme and the register new menu and add to the footer using action hook. Just add the following code in your child theme functions.php file

    /**
     * Register Menus
     *
     * @uses after_setup_theme action
     */
    function catcheverest_child_setup() {
    	/**
         * This feature enables custom-menus support for a theme.
         * @see http://codex.wordpress.org/Function_Reference/register_nav_menus
         */		
    	//register_nav_menu( 'primary', __( 'Primary Menu', 'catcheverest' ) );
    
    	register_nav_menus(array(
    		'primary' 	=> __( 'Primary Menu', 'catcheverest' ),
    		'footer'	=> __( 'Footer Menu', 'catcheverest' )
    	) );
    
    }
    add_action( 'after_setup_theme', 'catcheverest_child_setup' );
    /**
     * Shows Footer Menu
     *
     * @uses catcheverest_site_generator action to add it in the header
     */
    function catcheverest_child_footer_menu() { ?>
    	<div id="footer-menu">
            <nav id="access" role="navigation">
                <h2 class="assistive-text"><?php _e( 'Footer Menu', 'catcheverest' ); ?></h2>
                <div class="assistive-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to Footer Content', 'catcheverest' ); ?>"><?php _e( 'Skip to Footer Content', 'catcheverest' ); ?></a></div>
                <?php
    			if ( has_nav_menu( 'footer' ) ) { 
    				$catcheverest_footer_menu = array(
    					'theme_location'    => 'footer',
    					'depth'           	=> 1,
    					'container_class' 	=> 'menu-header-container', 
    					'items_wrap'        => '<ul class="menu">%3$s</ul>' 
    				);
    				wp_nav_menu( $catcheverest_footer_menu );
    			}
                ?> 	         
            </nav><!-- .site-navigation .main-navigation -->  
    	</div>
    <?php
    }
    add_action( 'catcheverest_site_generator', 'catcheverest_child_footer_menu', 5 );

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

    #footer-menu {
    	float: right;
    }
    #footer-menu ul.menu li {
        display: inline-block;
        position: relative;
        text-align: left;
    }
    #footer-menu ul.menu a {
        color: #eee; 
        padding: 0 20px;
    }
    in reply to: Social Widget moves header and pics #42656
    Sakin
    Keymaster

    @interiorsalvage: I think there is problem with the custom social icon link image url. Why there is extra code after your image url like ?c20ce4. See this http://interiorsalvagedesign.com/wp-content/uploads/pinterest-logo.png?c20ce4 . So, in this case there is only two ways to solve it. One is just remove all the image URL in the Custom Social icon and then user our own predefined social icons.

    Or you need to build child theme. See this on child theme http://catchthemes.com/blog/create-child-theme-wordpress/. Then add the following code in your child theme functions.php file.

    function catcheverest_child_scripts() {
    	wp_dequeue_script( 'catcheverest-grey' );
    }
    add_action( 'wp_enqueue_scripts', 'catcheverest_child_scripts', 20 );
    in reply to: Comment Box Image #42655
    Sakin
    Keymaster

    @Patrice: You can add the following css in “Appearance => Theme Options => Custom CSS” box.
    .commentlist > li.bypostauthor:before { content: none; }

    in reply to: Page layout terminology and "Buy now" #42634
    Sakin
    Keymaster

    @Theodore:
    Homepage Headline
    The Buy Now bar is called “Homepage Headline” and you can disable it for change it as per your need from “Appearance => Theme Options => Homepage Settings => Homepage Headline Options”

    Featured Slider
    The slider image is the demo slider image. You can use slider type from Image Slider, Post Slider, Page Slider and Category Slider as per your need. For that you need to go to “Appearance => Theme Options => Featured Slider => Slider Options” and select the slier type. After that you can follow the instruction mentioned in http://catchthemes.com/theme-instructions/catch-kathmandu-pro/
    Video Tutorial For Image Slider and Post Slider:
    http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-slider/
    http://catchthemes.com/blog/videos-blog/video-series-adding-featured-post-slider/

    Footer Widget
    We don’t have any demo item in Footer Widgets. But yes you can add item in Footer Area from “Appearance => Widgets”. I think you wanted to change the demo Homepage Featured Content.

    Homepage Featured Content
    By default, this featured content is shown with default images and texts. You can either change the image and text or disable it through “Appearance => Theme Options => Homepage Settings => Homepage Featured Content Options” in your WordPress Dashboard.

    Important Links for Catch Kathmandu Pro
    Theme Instructions: http://catchthemes.com/theme-instructions/catch-kathmandu-pro/
    Support Forum: http://catchthemes.com/support-forum/forum/catch-kathmandu-pro-premium/
    Blog: http://catchthemes.com/blog/
    Changelog: http://catchthemes.com/changelogs/catch-kathmandu-pro-theme/

    in reply to: Adventurous Pro Mobile Menu not working #42594
    Sakin
    Keymaster

    @theraleighsocialclub: Here it goes for twitter.
    ul.social-profile li.twitter a { background-position: -44px -43px; }

    in reply to: Adventurous Pro Mobile Menu not working #42580
    Sakin
    Keymaster

    @theraleighsocialclub: Simply add the following css in “Appearance => Theme Options => Custom CSS” box.
    ul.social-profile li.facebook a { background-position: 0 -43px; }

    in reply to: Adventurous Pro Mobile Menu not working #42571
    Sakin
    Keymaster

    @theraleighsocialclub: Did you refresh your browser and check is as I can see your meetup as color. For building child theme you can read this http://catchthemes.com/blog/create-child-theme-wordpress/ . You can also download the sample child theme there.

    in reply to: Zip #42570
    Sakin
    Keymaster

    @Theodore: You can simply download the zip file from your account at http://catchthemes.com/my-account/ . Some of the browser automatically unzip it. So, to safe way to download will be to right click the link and click on “Save Link As” and download it. You zip file should be as catch-kathmandu-pro.3.0.zip .

    You can update the theme using Theme uloader in your WordPress Dashboard. For this you need to install Catch Updater Plugin. Instruction is given in this link http://catchthemes.com/wp-plugins/catch-updater/

Viewing 20 posts - 6,621 through 6,640 (of 14,504 total)