Forum Replies Created

Viewing 20 posts - 7,121 through 7,140 (of 14,507 total)
  • Author
    Posts
  • in reply to: Adventurous Pro Issues #36454
    Sakin
    Keymaster

    Hello Benni,

    We are trying to release version 1.1 tomorrow.

    Regards,
    Sakin

    in reply to: Adventurous Pro Issues #36434
    Sakin
    Keymaster

    @Ruby: Thank for reporting issue in Featured Content Healing issue. We have just got that info also from @Jessica and we are working on Fixed in both Adventurous Free and Pro version. We will fixed this as soon as possible. Please wait for version 1.1

    There is no option to change the color of slider controllers colors. For this you need to add Custom CSS. So, change the color code in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box.

    /* For Default */
    #controllers a { background-color: #fff; }
    /* For Hover and Active */
    #controllers a:hover, #controllers a.active { background-color: #7c9b30; }
    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 🙂

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