Forum Replies Created

Viewing 20 posts - 7,121 through 7,140 (of 14,497 total)
  • Author
    Posts
  • in reply to: Add Blog Title to Archives #36402
    Sakin
    Keymaster

    @Bouncedancer: It depends on how plugin is build and most of the plugin from reputed developers have keep that is might and will not hamper load. Also this plugin work more on backend and will not effect must on frontend it that is developed properly. So, where you select the plugin: check in the update, reviews and download stats.

    in reply to: REMOVE THE padding #36335
    Sakin
    Keymaster

    @ashrafashraf: Yes now change the padding as per you need. For desktop, for example change
    #site-generator { padding-top: 459px; }
    to
    #site-generator { padding-top: 535px; }

    Similarly you can check your site and change as per you need in different media screen sizes.

    in reply to: REMOVE THE padding #36333
    Sakin
    Keymaster

    @ashrafashraf: It’s the same code I gave you before. I just wanted you to change the padding there. Nothing more.

    in reply to: REMOVE THE padding #36325
    Sakin
    Keymaster

    @ashrafashraf: It’s your wish to add in padding in the site generator. But I advice you to adjust in the css that i gave you previously. You can increase the padding here.

    #site-generator { padding-top: 459px; }
    @media screen and (max-width: 1060px) {
        #site-generator { padding-top: 300px; }
    }
    @media screen and (max-width: 960px) {
        #site-generator { padding-top: 220px; }
    }
    @media screen and (max-width: 767px) {
        #site-generator { padding-top: 134px; }
    }
    @media screen and (max-width: 479px) {
        #site-generator { padding-top: 75px; }
    }
    in reply to: REMOVE THE padding #36324
    Sakin
    Keymaster

    @ashrafashraf: Please stop adding in comment again and again. This will move your question to the bottom as I check in the older question first. So, when you add comment in your old question, your question will become new and will be in last in the list. Just wanted to make you aware of this.

    in reply to: backgroung image #36323
    Sakin
    Keymaster

    @ashrafashraf: It’s the matter of background position. You can try adding in the following css:

    body {
        background-image: url("http://www.idaat.se/wp-content/uploads/2014/06/15612711_xl1.jpg");
        background-position: center top;
        background-repeat: no-repeat;
    }
    in reply to: Styling Responsive menu #36322
    Sakin
    Keymaster

    @Cybersnaby: Catch Mustang uses tinynav that is just a select-box and will be difficult to change the style. So, we are thinking of changing more flexible menu in next version update. But has not been finalized yet.

    So, the background and shadow is from the main menu style only. This is css controlling both main menu and responsive menu.

    #access {
        background-color: #fff;
        border-radius: 3px;
        box-shadow: 0 1px 4px #bababa;
        padding: 0 10px 10px;
        position: relative;
    }

    And yes for the font size, it is controlled from

    .tinynav {
        font-size: 16px;
    }

    For the mobile menu item color:

    #access select {
        color: #474e55;
    }
    in reply to: Page Titles / Header Titles #36318
    Sakin
    Keymaster

    @Cybersnaby: First the Header Title and Description optional at the text that will be added in header just below the menu. But the page title will be added in the content section. So, these are different. For example, if you see it in the demo about page http://catchthemes.com/demo/catch-mustang/about/, you can see the difference.

    There is not option to disable the page title, you can empty the page title in your page and it will not display it.

    About removing the link in the page title, first you need to build child theme and then create functions.php file in your child theme and add this code in the following file https://gist.github.com/catchthemes/3579939d4a3f4abd322e

    in reply to: Mustang – colours & fonts #36316
    Sakin
    Keymaster

    @Cybersnaby: No Problem. Cheers 🙂

    in reply to: Mustang background / header background #36315
    Sakin
    Keymaster

    @Cybersnaby: Nice 🙂

    in reply to: Featured Post Slider dissappeared #36314
    Sakin
    Keymaster

    @zoran87: Sorry I don’t get it what you mean. Is the problem when you have multi-language or just when you change the background. Can you try it by disabling the plugin. Sometime, there will be plugin incompatibility issues.

    Sakin
    Keymaster

    @prajakta: Option Framework will not be expensive and it is just on backed. Also if you need, you can add option by creating child theme option panel. Here is the sample code that you can add in your child theme functions.php file

    add_action( 'admin_menu', 'catchkathmandu_child_options_menu' );
    /*
     * Create a function for Theme Options Page
     *
     * @uses add_menu_page
     * @add action admin_menu 
     */
    function catchkathmandu_child_options_menu() {
    
    	add_theme_page( 
            __( 'Theme Options Child', 'catchkathmandu' ),	// Name of page
            __( 'Theme Options Child', 'catchkathmandu' ),	// Label in menu
            'edit_theme_options',                           // Capability required
            'child_theme_options',                        	// Menu slug, used to uniquely identify the page
            'catchkathmandu_child_theme_options_do_page'	// Function that renders the options page
        );	
    
    }
    
    /*
     * Render Catch Kathmandu Child Theme Options page
     *
     * @uses settings_fields, get_option, bloginfo
     * @Settings Updated
     */
    function catchkathmandu_child_theme_options_do_page() {
    
    	
    }
    in reply to: REMOVE THE padding #36238
    Sakin
    Keymaster

    @ashrafashraf: But there won’t be enough space in iPhone to display like that so we have break that into two line.

    But if you insist then you can try following css:

    @media screen and (max-width: 767px) {
    	#site-generator .copyright, #site-generator .powered {
    		display: inline;
    		width: 47%;
    	}	
    	#site-generator .copyright {
    		float: right;
    		margin-right: 3%;
    		margin-left: 0;
    		text-align: right;
    	}
    	#site-generator .powered {
    		float: left;
    		margin-left: 3%;
    		margin-right: 0;
    		text-align: left;
    	}
    }
    in reply to: REMOVE THE padding #36232
    Sakin
    Keymaster

    @ashrafashraf: I see there is so many unnecessary css in your Custom CSS box like below.

    @media screen and (min-width: 961px) {
    #site-generator .copyright, #site-generator .powered {
        padding-top: 60px;
    }
    }
     #site-generator .powered {
    padding-top: 60px;color: black;
    font-weight: bold;
    }
    #header-content {
    }
    @media screen and (min-width: 961px) {
    }
    #site-generator .powered {
    float: right;
    width: 200px;  }
    
    #site-generator .copyright {
    float: left; width: 275px;
    }

    This padding can be controlled by changing the padding in the css I gave you. Not to add in individually live this.

    in reply to: Homepage Headline Spacing #36231
    Sakin
    Keymaster

    @Michael: No Problem. Glad it worked for you. Cheers 🙂

    in reply to: Simple Catch / catch everest / Catch Box #36227
    Sakin
    Keymaster

    @Aikoooo: Proxima Nova is paid font and it will not be available in any of the WordPress theme. WordPress only allowed to add in GPL compatible font and bundle scripts.

    So, if you want to add Proxima Nova font then you need to use service like TypeKit https://typekit.com/fonts/proxima-nova and installed with the plugin like http://wordpress.org/plugins/typekit-fonts-for-wordpress/

    in reply to: wp-pagenavi #36226
    Sakin
    Keymaster

    @ashrafashraf: Yes sure you can use it.

    in reply to: Gallery #36225
    Sakin
    Keymaster

    @ashrafashraf: For this you need to user responsive columns plugin and add it your video using columns shortcode. This option will not be there in theme by default, and falls under plugin territory.

    in reply to: Slider info text #36224
    Sakin
    Keymaster

    @Djapeto: If you are using Catch Kathmandu Free theme then you only have option to use either “Featured Post Slider” or “Feature Category Slider” both are there to highlight your posts. The text will be from the Post Title and Post Excerpt Content. So, when you click on image or title, it will link to the post assigned.

    You can see it in our Theme Instruction page at http://catchthemes.com/theme-instructions/catch-kathmandu/ where you can read “Featured Post” section for more details.

    Also you can check out tutorial about “Featured Post Slider” at http://catchthemes.com/blog/videos-blog/video-series-adding-featured-post-slider/

    But if you are using Catch Kathmandu Pro version then you have extra options to use “Image Slider” or “Page Slider”. So, in pro version you have total 4 types of slider. Which you can see at http://catchthemes.com/theme-instructions/catch-kathmandu-pro/

    Also you can check out tutorial about “Featured Image Slider” at http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-slider/

    in reply to: Main nav boxes have white border #36222
    Sakin
    Keymaster

    Hi Neil,

    You can try adding in the following css in “Appearance => Theme Options => Custom CSS” box.
    #header #mainmenu ul li ul li a { font-weight: bold; }

    Regards,
    Sakin

Viewing 20 posts - 7,121 through 7,140 (of 14,497 total)