Forum Replies Created

Viewing 20 posts - 8,621 through 8,640 (of 14,497 total)
  • Author
    Posts
  • in reply to: Meta Data/login and Header sidebar + links #20740
    Sakin
    Keymaster

    @Diane: You can control widgets from “Appearance => Widgets” and add/remove widgets as per your need.

    You can only put in the available widgets in your sidebar. If you want to add custom widgets then you might need to search for plugin that does it or you need to hire customizer to add extra widget for you.

    You can change color as per your need from “Appearance => Theme Options => Color Options”.

    For more details please try to add in your site URL and explain. It’s very hard to imagine and give you the solution.

    in reply to: Change Current Page Mini Menu Styling #20739
    Sakin
    Keymaster

    @s-design: I gave you the simple solution as you don’t have footer menu. So, unchecking it will not effect your site at all.

    in reply to: Center Tagline under Site Title #20718
    Sakin
    Keymaster

    @Troy: Thanks for the update. Cheers 🙂

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

    @Yuliya Gaznyuk: Hello Julia, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #hgroup-wrap { display: none; }

    in reply to: pages backgroud colors #20710
    Sakin
    Keymaster

    @luismarioochoa: Ok you can try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    /* For Page Background */
    #main { background-color: #000; }
    /* for Form Border */
    input[type="text"], input[type="email"], textarea {
        border: 1px solid #000;
    }
    in reply to: Contact Form plugin code not working #20709
    Sakin
    Keymaster

    yes

    in reply to: Theme in IE #20708
    Sakin
    Keymaster

    @Hans: Can you post the screenshot of the issues and your site URL?

    in reply to: Contact Form plugin code not working #20699
    Sakin
    Keymaster

    @Karyn: You can send me the access from http://catchthemes.com/contact-us but in subject add it as Support Forum #20679

    in reply to: Contact Form plugin code not working #20696
    Sakin
    Keymaster

    @Karyn: Maybe some conflict with plugin or server setup. Can you try activating any other theme and check in the same site. Also the shortcode [Form id="10"] is not of Contact Form 7

    in reply to: Changing Theme color #20694
    Sakin
    Keymaster

    @yoshimura55: In Catch Kathmandu Pro, you should be able to change it from “Appearance => Color Options”. But if you want to further change it then send me your site URL and explain which element exactly you want to change.

    in reply to: Contact Form plugin code not working #20693
    Sakin
    Keymaster

    @Karyn: Contact Form 7 works fine in Catch Evolution Pro theme. First you need to activate Contact Form 7 plugin and then create or edit form at “Contact” from your WordPress Dashboard. Then you need to copy the shortcode. It will be similar to this [contact-form-7 id="1885" title="Contact form 1"] and paste in the page where you want to show it.

    in reply to: Centering Logo – CSS #20692
    Sakin
    Keymaster

    @gregk: That’s nice 🙂

    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”

Viewing 20 posts - 8,621 through 8,640 (of 14,497 total)