Forum Replies Created

Viewing 20 posts - 6,621 through 6,640 (of 14,494 total)
  • Author
    Posts
  • 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/

    in reply to: Disable footer box + remove space between banner #42568
    Sakin
    Keymaster

    @Christer: You can add the following css in “Appearance => Theme Options => Custom CSS” box.
    #colophon { display: none; }

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

    @theraleighsocialclub: For this you need to build child theme and then add the following function in your child theme functions.php file.

    /**
     * Remove grey script
     */
    function adventurous_child_scripts() {
    
    	wp_dequeue_script( 'adventurous-grey' );
    	
    }
    add_action( 'wp_enqueue_scripts', 'adventurous_child_scripts', 20 );

    But if you are having difficult in child them then try to add the following css in “Appearance => Theme Options => Custom CSS” box.
    .social-profile .img_grayscale { opacity: 1 !important; }

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

    @theraleighsocialclub: You are not allowed to add external link image URL. You need to upload that meetup logo in your site. For that you can just click on “Add Image” and upload the meetup logo or you can upload from Media uploader at “Media => Add New”, then pate the meetup logo url. You current meetup logo is from site http://img2.meetupstatic.com but the image should be from your own site http://www.theraleighsocialclub.com

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

    @theraleighsocialclub: Can you remove that meetup custom social icon image http://img2.meetupstatic.com/img/8308650022681532654/header/logo-2x.png. As you are not supposed to add image from outside your site in Theme Options panel. So, you can upload this image in your site and add it. Then it will work.

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

    @theraleighsocialclub: But it’s working fine in our site. You can see in our demo site as well http://catchthemes.com/demo/adventurous/. So, I don’t get it how you get issue with menu when you have Adventurous social widget. Can you show that error to me.

    Looks like we are understanding different. I will email you for faster response.

    in reply to: Disable footer box + remove space between banner #42553
    Sakin
    Keymaster

    @Christer: Can you post in your site URL so that I can check in.

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

    @theraleighsocialclub: In which section did you add in Adventurous Social widget?

    in reply to: Not working on iPhone #42546
    Sakin
    Keymaster

    @Brandilyn: Sorry for the late reply. As this post was in spam folder. Today when I try to check in detail. I saw this message.

    I see that you are using Catch Evolution Pro theme which is responsive web design and it will automatically look good in mobile devices. But you have install “Mobile Theme” module from Jetpack plugin. So, it is loading Mobile Theme from JetPack plugin in your iPhone. To solve this, you can just go to Jetpack settings and disable Mobile theme module.

    Regards,
    Sakin

    in reply to: Site and Header Width and Padding #42539
    Sakin
    Keymaster

    Hello Maryann,

    I check in your reference site http://e63.415.myftpupload.com/cvt-services/ and your site http://interiorsalvagedesign.com where both of these site have same width of 1140px.

    For padding in header, you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #site-logo { padding-top: 0; }
    #hgroup-wrap { padding-bottom: 0; }

    The title Gallery from Jetpack is only supported with Sidebar. So, either you need to user default gallery or you can add sidebar to the gallery. If you want to change the width in Jatpack gallery then you need to change the code width in functions.php file. But for this you need to build child theme and then edit it in your child theme.

    if (!isset($content_width))
         	$content_width = 690;

    Regards,
    Sakin

    in reply to: Google Structured Data- hcard errors #42530
    Sakin
    Keymaster

    Hi Matt,

    I mean that you remove that CSS not add it.

    Regards,
    Sakin

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