Forum Replies Created

Viewing 20 posts - 1,841 through 1,860 (of 14,500 total)
  • Author
    Posts
  • in reply to: Page scroll up on click using chrome with mobile #78364
    Sakin
    Keymaster

    @champac:
    1. First you need to install Regenerate Thumbnail plugin and then go to “Tools => Regen. Thumbnails” and click on “Regenerate All Thumbnails” button.
    2. Then go to “Appearance => Customize” and change any value and click on Save & Publish. You can change back your value. After you change element in customizer and click on “Save & Publish”, it will clear your old cache data. So, you need to do this step as well.

    in reply to: some questions #78363
    Sakin
    Keymaster

    @NANKYUNG: You need to make your site live first so that I check in and provide you the solutions. So, let me know once your site is live back.

    in reply to: Change width of catch box pro theme vs change to Evolution #78362
    Sakin
    Keymaster

    @vlts: Sorry I don’t get it what you mean. Can you explain in reference with your site URL?
    So, what you want to do for less than 780px width screen resolutions. Also for which element that you want 780px.

    in reply to: Getting an error message in customize screen #78361
    Sakin
    Keymaster

    @cindy: There is Catch Updater plugin that you will find in http://catchthemes.com/wp-plugins/catch-updater/. You can download zip file and then upload it from “Plugins => Add New => Uploads”.

    in reply to: Floating Header Snaps Off From Top #78339
    Sakin
    Keymaster

    @matthewseanmclachlan: It’s conflicting with your own customs css:
    Find all the #header-top css, you will find the following:

    #header-top { position: fixed; }
    #header-top {
    	background: #ea3b36;
    	background: rgba(234, 53, 54, 0.7);
    }
    #header-top {
        box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); 
        -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
        position: relative;
    }
    #header-top { z-index: 99; }

    Remove all that and add the following:

    #header-top { 
    	background: #ea3b36;
    	background: rgba(234, 53, 54, 0.7);
    	box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
    	-moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); 
    	-webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
    	position: fixed;
    	z-index: 99; 
    }
    in reply to: header image slideshow? #78338
    Sakin
    Keymaster

    @Anna1226: Your slider is showing fine. If you are talking about hiding you header site title and tagline then you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    #masthead { display: none; }

    in reply to: Homepage Headline Button #78336
    Sakin
    Keymaster

    @mrsdee: Thanks for your appreciation and if you like my support and Catch Kathmandu theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-kathmandu?rate=5#postform

    in reply to: mobile header #78335
    Sakin
    Keymaster

    @Paul: Try adding following css in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (max-width: 940px) {
    	#branding img { max-height: 100%; }
    }
    in reply to: Floating Header Snaps Off From Top #78333
    Sakin
    Keymaster

    @matthewseanmclachlan: You can add the following css:

    .site { padding-top: 75px; }
    #header-top { position: fixed; }
    in reply to: Homepage Headline Button #78332
    Sakin
    Keymaster

    @mrsdee: yes, just go to “Appearance => Theme Options => Homepage Headline Options” and add your email address as mailto:youremailaddress in Headine Link

    in reply to: Page scroll up on click using chrome with mobile #78331
    Sakin
    Keymaster

    @champac: It’s not link issue. It’s flexible height from your slider. I see that you haven’t regenerated thumbnail after activating this theme. Please regenerate thumbnail using Regenerate thumbnail plugin https://wordpress.org/plugins/regenerate-thumbnails

    After that make any change in customier to clear the cache and see the difference.

    in reply to: hide right sidebar on mobile? #78327
    Sakin
    Keymaster

    @shawn: ok then try adding following css in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (max-width: 960px) {
    	#secondary { display: none; }
    }
    in reply to: Floating Header Snaps Off From Top #78326
    Sakin
    Keymaster

    @matthewseanmclachlan: Oh I misunderstood. Then remove the css I gave you. Check your site, it’s not live.

    in reply to: Getting an error message in customize screen #78325
    Sakin
    Keymaster

    @cindy: Did you use Catch Updater plugin and followed the instructions. I will email you for assistance.

    in reply to: Menu Bar #78316
    Sakin
    Keymaster

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

    #header-menu .menu .current-menu-item > a, 
    #header-menu .menu .current-menu-ancestor > a {
        background-color: #e5e5e5;
        color: #373737;
    }
    in reply to: Sub-Menu in Create Pro not showing up on my iPhone #78304
    Sakin
    Keymaster

    @Therese: Thanks for finding bug in Create Pro theme. For now, please add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .create-menu.toggled ul ul {
        left: auto;
        opacity: 1;    
    }

    Note: You can remove this after you get new version update. We will fix it by tonight. Sorry for the trouble.

    in reply to: Catch Base I Featured Slider – switching languages #78302
    Sakin
    Keymaster

    @monicavilas: Thanks 🙂

    in reply to: Catch Base I Featured Slider – switching languages #78296
    Sakin
    Keymaster

    @monicavilas: Thanks for your appreciation. If you like my support and Catch Base theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-base?rate=5#postform

    in reply to: Catch Base I Featured Slider – switching languages #78290
    Sakin
    Keymaster

    @monicavilas: Which plugin are you using it and if that is working in customizer then it should work in live as well. Or you can just build child theme, for child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/. You can also download sample Catch Base child theme from there and then add the following code in your child theme functions.php file

    function catchbase_child_invalidcache() {
    	delete_transient( 'catchbase_featured_slider' );
    }
    add_action( 'after_setup_theme', 'catchbase_child_invalidcache' );
    in reply to: Featured Page with embedded Html #78289
    Sakin
    Keymaster

    @Angel:
    1. Sorry, that is how the WordPress Excerpt text works. If you want HTML code with formatting then try “Image Content” in Featured Content Type. Otherwise, you need to build child theme. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then copy function catchkathmandu_featured_content_page() to your child theme functions.php file and edit it.

    2. What do you want to change that next and previous arrow in the slider to. If you want to just change it from css. Then you can use the following css element and add your custom css in “Appearance => Theme Options => Custom CSS” box:

    #slider-nav a.slide-previous { }
    #slider-nav a.slide-next { }

    But if you want to change manually to text, then you need to build child theme and then copy function catchkathmandu_image_sliders() to your child theme functions.php file and edit it.

Viewing 20 posts - 1,841 through 1,860 (of 14,500 total)