Forum Replies Created

Viewing 20 posts - 7,601 through 7,620 (of 14,504 total)
  • Author
    Posts
  • in reply to: Slider Stopped Working after Last Update #30624
    Sakin
    Keymaster

    @MikeGilbert: It’s strange and the slider is working fine in our server. Can you check in your settings at “Appearance => Theme Options => Featured Slider”. I will also email you personally in case you need me to check in your server.

    in reply to: Banner color and other 2 questions #30619
    Sakin
    Keymaster

    @dfjama:
    1. You can add the following css in “Appearance => Theme Options => Custom CSS” box.
    #site-generator { background-color: #000; }

    2. You can add the following css in “Appearance => Theme Options => Custom CSS” box to hide the slider text.
    #main-slider .entry-container { display: none; }

    Note: I see that you have replaces the images inside ‘catch-kathmandu’ core theme directory. You should not edit any core theme files as these changes will be reverted back to original when you update or upgrade your theme. To change the images in the Slider in Catch Kathmandu Free theme, you need to create post from “Add New => Posts” and add featured image in your post. Then you need to go to “Appearance => Theme Options => Featured Slider => Featured Post Slider Options” and add in the post ID. You will be able to see the post ID in your all “Posts” section.

    Fore more check our theme instructions page at http://catchthemes.com/theme-instructions/catch-kathmandu/ and check in “How to add Featured Image in Post/Page?” and “Featured Slider” section.

    3. Which text you want to justify. In web justify text is not so common and we let it align left.

    in reply to: Control over page and feature titles #30616
    Sakin
    Keymaster

    @Tim: You can add the following css in “Appearance => Theme Options => Custom CSS” box.
    #featured-post .entry-title { display: block; }

    in reply to: file permissions #30612
    Sakin
    Keymaster

    @Tim: No it’s fine there is not special permission needed for any files. generally folder should be 755 and files 644. Also to let you know that, you can upload your zip files directly from “Appearance => Themes => Add New => Uploads”.

    in reply to: I need help please #30610
    Sakin
    Keymaster

    @jennifer wilson: You cannot add Posts in Page by Default WordPress Settings. You can add Posts in Category and add category in your menu. If you want to add posts in page then you need to use plugin. I search and found one plugin, you can test it Posts in Page plugin.

    in reply to: Asus 10" screen with Chrome #30609
    Sakin
    Keymaster

    @darren13: Can you check if there is any chrome extension in your computer which is making this and also check in your zoom in browser. As I check in from all browser in different screen-size and it’s working fine. You can also test in your site at http://mattkersley.com/responsive/. So, Sorry I am not being able to find it.

    in reply to: Resize images in featured post slider #30607
    Sakin
    Keymaster

    @Roberto: Which slider you are using? If you are using Image Slider then you need to manually resize the image as per you need with width 1140px and height can be any as per your need. But if you use Page Slider or Post Slider or Category Slider, then it will take the featured image of size 1140px width and 450px height. But if you upload featured image size is less then this size then it will show you the your original image.

    Note: If you have just changed your Theme then you need to regenerate image thumbnail for Posts published prior to activating this Theme. You can simply install Regenerate Thumbnails Plugin. Then Regenerate Thumbnails through “Tools => Regen. Thumbnails” in your WordPress Dashboard.

    in reply to: add gallery #30606
    Sakin
    Keymaster

    @ashrafashraf: If you want to add the shortcode then I already give you the instruction. What is your shortcode, replace it with [gallery]

    function catchbox_extra_gallery() { 
    	echo do_shortcode('[gallery]');
    }
    add_action( 'catchbox_before_primary', 'catchbox_extra_gallery', 15 );
    in reply to: Diaporama problem #30601
    Sakin
    Keymaster

    @Perriard: I don’t get it what you mean. Are you using Featured Image Slider in Catch Kathmandu Pro theme. Then you are not supposed to add the ID number of the image. But you are supposed to add the Image URL.

    in reply to: Sidebar/Page Order on mobile devices #30600
    Sakin
    Keymaster

    @Tim: Either you need to add in padding as below:

    .textwidget ul {
        list-style: disc;
        padding-left: 11px;
    }

    Or you need to make the disc inside in bullet as below:

    .textwidget ul {
        list-style: disc inside;
    }
    in reply to: Reduce Sidebar Width #30599
    Sakin
    Keymaster

    @rgamlam: You can add the following css in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 961px) {	
    	#primary {
    		width: 530px;		
    		width: 53rem;
    	}		
    	#secondary {
    		width: 300px;
    		width: 30rem;
    	}		
    }
    @media screen and (min-width: 1025px) {
    	#primary {
    		width: 590px;		
    		width: 59rem;
    	}		
    	#secondary {
    		width: 300px;
    		width: 30rem;
    	}		
    }
    @media screen and (min-width: 1153px) {
    	#primary {
    		width: 670px;		
    		width: 67rem;
    	}		
    	#secondary {
    		width: 310px;
    		width: 31rem;
    	}	
    }
    @media screen and (min-width: 1281px) {
    	#primary {
    		width: 750px;
    		width: 75rem;
    	}
    	#secondary {
    		width: 320px;
    		width: 32rem;
    	}	
    }
    @media screen and (min-width: 1345px) {
    	#primary {
    		width: 770px;
    		width: 77rem;
    	}
    	#secondary {
    		width: 360px;
    		width: 36rem;	
    	}
    }
    in reply to: Just activated and cannot get Slider, Widgets to show #30518
    Sakin
    Keymaster

    @dbevarly: If you delete your custom menu, it will show the primary menu. You can hide that by adding in the following css in “Appearance => Theme Options => Custom CSS” box.
    #branding #access { display: none; }

    Sakin
    Keymaster

    @Tim: WoW, you found the issue when we set to 3 Footer Area. We will fixed this in next version update. Till then you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (max-width: 640px) {
    	#supplementary.three .widget-area {
    		margin-left: 0;
    		margin-right: 0;
    		width: 100%;
    	}
    }
    in reply to: Reduce Sidebar Width #30514
    Sakin
    Keymaster

    @rgamlam: Can you send me your site URL and the width that you want. Then I will check in Custom CSS to edit that for you.

    in reply to: Secondary menu conditionals #30513
    Sakin
    Keymaster

    @kteschmitt: The option will be to build child theme and then create functions.php file in your child theme and copy the function catchbox_header_menu in your child theme functions.php file edit the condition is_page.

    in reply to: Image alignment with text #30511
    Sakin
    Keymaster

    @mark: Yes sure send me your site URL and Screenshot URL. You can upload the screenshot in your own site or any photo sharing site.

    in reply to: slider #30508
    Sakin
    Keymaster

    @ADINA NOVAC: Oh so you are trying to change the image in Features Slider. In Catch Everest Free theme, you only have option to user “Featured Post Slider” that is why you must be confused. For this first, you need to create Post from “Posts => Add New” and add in in Featured image in your post, see this screenshot on how to add featured image http://www.pinterest.com/pin/548594798331806476/. Then you need to go to “Appearance => Theme Options => Featured Post Slider => Featured Post Slider Options” and add in your post id like http://www.pinterest.com/pin/548594798329984427/. You can see all your post ID in “Posts” columns in your WordPress Dashboard.

    I will also email you and reply me in-case if you are still confused.

    in reply to: Sidebar/Page Order on mobile devices #30505
    Sakin
    Keymaster

    @Tim: Send me the link where you want to fix it. I will send you custom css.

    in reply to: add gallery #30448
    Sakin
    Keymaster

    @ashrafashraf: You can add the following css to remove the margin.
    #slider.slider-fullwidth { margin-bottom: 0 }

    in reply to: remove main menu in mobile #30445
    Sakin
    Keymaster

    @Sevian: You can add in the following css in “Appearance => Theme Options => Custom CSS” box.
    @media screen and (max-width: 960px) { #header-menu { display: none; } }

Viewing 20 posts - 7,601 through 7,620 (of 14,504 total)