Forum Replies Created

Viewing 20 posts - 5,041 through 5,060 (of 14,500 total)
  • Author
    Posts
  • in reply to: Featured image size #51427
    Sakin
    Keymaster

    @Keith: Sorry I don’t get it what you mean. Can you post in your site URL and explain.

    in reply to: Home page change picture #51426
    Sakin
    Keymaster

    @wpbv: If you are using Catch Evolution Free theme, then you must be viewing default demo slider images. If this free version, you have option to replace those image by adding your own set of image from “Featured Post Slider” or disable it.

    To add Featured Post Slider, please refer to theme instructions page at http://catchthemes.com/theme-instructions/catch-evolution/ or screencast at http://catchthemes.com/blog/videos-blog/video-series-adding-featured-post-slider/

    Note: If you want to use Featured Image Slier or Page Slider or Category slider then you need to upgrade to pro version. So, please check in Theme Instruction of Pro version for additional options at http://catchthemes.com/theme-instructions/catch-evolution-pro/

    in reply to: Responsive.css not active in child theme #51425
    Sakin
    Keymaster

    @Sandra1970: For adventurous theme, if you want to remove the parent theme responsive css and add your own child theme responsive.css file. Then you need to add the following code in you child theme functions.php file.

    // Remove Parent theme responsive.css and adding new responsive.css in child theme 
    function adventurous_child_enqueue_scripts() {
        wp_dequeue_style( 'adventurous-responsive' );
        wp_enqueue_style( 'adventurous-child-responsive', get_stylesheet_directory_uri() . '/responsive.css' );
    }
    add_action( 'wp_enqueue_scripts', 'adventurous_child_enqueue_scripts', 11 );
    in reply to: Featured image size #51423
    Sakin
    Keymaster

    @Keith: The recommended featured image size depends on the theme and the placeholder. If you are using Adventurous theme, then you can see in theme instructions page http://catchthemes.com/theme-instructions/adventurous/. That we recommend following sizes:
    Feature Slider
    Width: 1600px
    Height: 600px

    Featured Image in Homepage and Archive Page
    Width: 800px
    Height: 324px

    Small Thumbnail
    Width: 400px
    Height: 267px

    The post images that you are going to use for Slider is recommended to be 1600px width. But for other area it can just be 800px and so on.

    in reply to: change header spacings #51422
    Sakin
    Keymaster

    @shaun.smudger.smith: sorry your site is not using Simple Catch Themes. If you use Simple Catch theme, then you can adjust the margin top in the following css and add it in “Appearance => Theme Options => Custom CSS” box to adjust your spaces in header.

    #header .logo-wrap { margin-top: 54px; }
    #header .social-search { margin-top: 40px; }
    #header #mainmenu { margin-top: 40px; }
    in reply to: Menu on Mobile Devices Not Showing #51421
    Sakin
    Keymaster

    @dfwrgjeff: You should be able to add text widget in “Header Right Sidebar” from “Appearance => Widgets”. If the text doesn’t come even after adding widget to Header Right Sidebar then please check in your settings at “Appearance => Theme Options => Header Options => Disable Header Right Sidebar?”

    in reply to: Opacity on Slider #51420
    Sakin
    Keymaster

    @luismarioochoa: Sorry this theme is not designed that way. So, it might be complicated. Also this theme is responsive design while the reference site is fixed design. So, you might want to disable responsive design from your theme options panel.

    You might have to hire customizer to work on it. I will give you the reference css that you can work with. So, just play with the following css:

    #slider-wrap a {
        padding: 0;
    }
    #slider-wrap .featured-text {
        height: 88%;
        padding: 3%;
        position: absolute;
        right: 0;
        top: 0;
        width: 35%;
    }
    in reply to: Social Icons in line with menu #51397
    Sakin
    Keymaster

    1. If you want to center all widget ticket to be align centered then you need to add the following css in “Appearance => Theme Options => Custom CSS” box:
    .widget-title { text-align: center; }

    But if you just want to center the social icon title then add the following instead:
    .widget_catchbox_social_widget .widget-title { text-align: center; }

    2. You can change the percentage in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (min-width: 961px) {
    #primary { width: 64%; }
    #secondary { width: 34%; }
    }

    3. People don’t have to be register to post a comment. I can post comment in your site that’s not a problem. To remove this it require high level of customize, so you might need to hire customiser for that. First you need to build child theme, copy function catchbox_comment_form_fields() from catchbox-functions.php file, then paste that in your child theme fucntions.php file and edit it there as per your need.

    in reply to: Align image and gallery on the right #51395
    Sakin
    Keymaster

    @Ronel: It cannot be done perfect like that as your image size and the percentage of width need to match. If you want like that then you might need to consider using plugin. I recommend you the plugin like “Jetpack” where you have module like “Tiled Galleries”.

    For this gallery, either you have make it aligned left, center or right. So, best option will be to align center. For that you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .gallery .gallery-icon img {
        display: block;
        margin: 0 auto;
    }
    in reply to: How do I change default Image sizes in Blog listings? #51393
    Sakin
    Keymaster

    @Dan Davies: Sorry I don’t understand it can you explain in reference with your site URL. I don’t get it which image size you want to change to and to which size.

    in reply to: Multilanguage in Catch Kathmandu Pro #51390
    Sakin
    Keymaster

    @Michael: mqtranslate has their own support forum at https://wordpress.org/support/plugin/mqtranslate

    About the flag, as per my knowledge that have “Language Switcher” widget. You can add that widget to your sidebar from “Appearance => Widgets”

    Theme option text like Promotion headline and all. You need to add in like like this I think so. For better support you need to ask in their support forum.
    [:dk]Dansk sprog[:en]English language

    in reply to: Remove 'posted on' #51388
    Sakin
    Keymaster

    @Kim:
    1. You can change the font size in the following css and then add it in your custom css box:
    .single-post .entry-date { font-size: 12px; }

    2. You can hide it by adding the following css:
    #nav-single { display: none; }

    in reply to: Alignment on mac #51387
    Sakin
    Keymaster

    @Kim: You are using Catch Flames Pro version 1.0 where as the latest version is Catch Flames Pro 3.0.1. For update you can use the plugin Catch Updater http://catchthemes.com/wp-plugins/catch-updater/ for easy update from admin. First you need to download the latest version of Catch Flames Pro from your account at http://catchthemes.com/my-account and then you Catch Updator plugin to update it from WordPress Add New theme panel.

    in reply to: Menu on Mobile Devices Not Showing #51386
    Sakin
    Keymaster

    @bigoslesli: Thanks for the support and detail answer

    @dfwrgjeff
    : I hope you got your answer

    in reply to: Search Results Page #51382
    Sakin
    Keymaster

    @Kim: Then you can the css that I gave your earlier. Find the following css:

    @media screen and (max-width: 940px) {
        #branding img { max-height: inherit; }
    }

    Then replace it with the following css:

    @media screen and (max-width: 940px) {
        #branding img { max-height: inherit; }
        #sidebar-header-right { display: none; }
    }
    in reply to: Search Results Page #51376
    Sakin
    Keymaster

    @Kim: Then where you want to show it. It will not fit in right in mobile devices.

    in reply to: Add new fonts #51375
    Sakin
    Keymaster

    @Keith: Don’t know about that. If you have license of that theme then you can use plugin and add in as Font face embed.

    in reply to: Add new fonts #51373
    Sakin
    Keymaster

    @Keith: We will add Libra Baskerville google font in next version update for Adventurous Pro theme. But Trajan Pro is not google font and it’s not compatible with GPL license so cannot be added.

    in reply to: add fonts #51365
    Sakin
    Keymaster

    @Camel1021: If you want to use external font which is not google font then first you need to build child theme. Then you can generate that font from http://www.fontsquirrel.com/tools/webfont-generator and then embed it using Font Face. See this http://css-tricks.com/snippets/css/using-font-face/

    Also you might want to try plugin for font. That will be easy. Check this https://wordpress.org/plugins/search.php?q=font

    in reply to: Clear Float #51364
    Sakin
    Keymaster

    @bigoslesli: Try the following css and also when I check in your site. It’s clear. Can empty your cache from W3 Total Cache settings and you refresh your browser to clear the cache.

    .entry-content h2 {
        clear: both;
    }
Viewing 20 posts - 5,041 through 5,060 (of 14,500 total)