Forum Replies Created

Viewing 20 posts - 7,121 through 7,140 (of 14,505 total)
  • Author
    Posts
  • in reply to: Sticky post doesn't work #36433
    Sakin
    Keymaster

    @Djapeto: I think you are confused. In WordPress, it will display “Sticky Post” as the first post only in Blog Archive and homepage. But in Category archive, it will display the post in the order of date.

    See the example of default WordPress Theme
    Homepage / Blog Archive: This shows sticky post as the first post http://twentyelevendemo.wordpress.com/
    Category Archive: This will show post in date order http://twentyelevendemo.wordpress.com/category/uncategorized/

    This is same with the Catch Kathmandu Theme:
    Homepage / Blog Archive: This shows sticky post as the first post http://catchthemes.com/demo/catch-kathmandu/blog/
    Category Archive: This will show post in date order http://catchthemes.com/demo/catch-kathmandu/category/uncategorized/

    in reply to: Font Family Options not saved #36431
    Sakin
    Keymaster

    @jeffery.scherer: It is showing Helvetica for me. Remember, when you choose Helvetica font, it will check in the computer that you are viewing site on, if there is Helvetica font install or not. If the site doesn’t find the Helvetica font in the computer then only it will display Arial font as alternative.

    We will not be able to load Helvetica always as this is Paid font and are not authorized to add in theme with embed font.

    in reply to: header #36429
    Sakin
    Keymaster

    @ashrafashraf: You can try adding in the following css.

    #page, #branding {
        background: none transparent;
    }
    in reply to: Featured Content Subheadline Text not loading #36428
    Sakin
    Keymaster

    @Jessica: Thanks for reporting the issue and we have just fixed it version 0.6. We have submitted the update for WordPress.org and it will be live soon after the WordPress Theme Review Team Approves it.

    For now you can access the updates version from WordPress SVN and you can update the theme with our Catch Updater plugin.

    in reply to: @media screen #36426
    Sakin
    Keymaster

    @ashrafashraf: if you need both then it will be as below:

    @media screen and (max-width: 767px) {
        #site-generator { padding-top: 75px;}
        .social-profile {display: none;}
    }
    in reply to: @media screen #36421
    Sakin
    Keymaster

    @ashrafashraf: Yes you can do that. But why you need #site-generator { padding-top: 75px; } You can simply add

    @media screen and (max-width: 767px) {
    .social-profile {display: none;}
    }
    in reply to: main content color #36420
    Sakin
    Keymaster

    @ashrafashraf: For main background color, you don’t need important. So, replace our custom css from

    #main {
    background-color: #4D1C1C !important;
    }

    to
    #main { background-color: #4d1c1c; }

    And for your gallery under your slider you can use the following css:
    #gw_go_portfolio_flex9 {background-color: #eee; }

    in reply to: 2nd blog post doesn't show on home page. #36403
    Sakin
    Keymaster

    @Bouncedancer: Please send me your site URL so that I can check in. I need more info on this.

    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() {
    
    	
    }
Viewing 20 posts - 7,121 through 7,140 (of 14,505 total)