Forum Replies Created

Viewing 20 posts - 8,261 through 8,280 (of 14,505 total)
  • Author
    Posts
  • in reply to: how to active Fixed Header Top Menu #23451
    Sakin
    Keymaster

    @James: Just go to “Appearance => Menus” and then assign menu location. If you are using WordPress 3.8 and above then you will find manage location in “Appearance => Menus => Manage Location”. There you can just adding it and save changes.

    in reply to: How to Disable/Remove Search and Archive in Sidebar #23449
    Sakin
    Keymaster

    @Michael: If you have choose the layout with Sidebar in “Appearance => Theme Options” panel and then haven’t added any widget in your sidebar from “Appearance => Widgets”, then it will show it as default widget. But if you add widgets from “Appearance => Widgets”, then it will be replaced by your widgets and to remove the sidebar you can select the Layout from “Appearance => Theme Options => Layout Options”

    in reply to: Post Image Size #23402
    Sakin
    Keymaster

    @nch: Oh sorry. Catch Everest Free theme uses Featured Image for the post and slider image for the slider. For sizes see theme instruction at http://catchthemes.com/theme-instructions/catch-everest/.

    But if you upgrade to Catch Everest Pro theme, you have option to choose featured image size in post/page from “Content Featured Image Options” in your edit post/page.

    in reply to: Changing Type of Font and size for my pages #23386
    Sakin
    Keymaster

    @kb: It’s not simple to change the font size for responsive design theme. When we change the font size for large screen, we need to change all the way to small screens. To adjust the header font size of post and page, you need to adjust the size in the following css and add it in “Appearance => Theme Options => Custom CSS” box.

    /* For Large Screen */
    .entry-title {
        font-size: 26px;
        line-height: 1.5em;
    }
    /* For Screen with max width 768px */
    @media screen and (max-width: 768px) {
    .entry-title {
        font-size: 20px;
        line-height: 28px;
    }
    }
    /* For Screen with max width 479px */
    @media screen and (max-width: 479px) {
    .entry-title {
        font-size: 18px;
        line-height: 24px;
    }
    }
    /* For Screen with max width 320px */
    @media screen and (max-width: 320px) {
    .entry-title {
        font-size: 16px;
        line-height: 22px;
    }
    }

    To remove the top right text that displays the format of the post, e.g. “Image” or “Link”, you need to add the following css in “Appearance => Theme Options => Custom CSS” box.

    .entry-header .entry-format {
        display: none;
    }
    in reply to: Move search and social media icons #23384
    Sakin
    Keymaster

    @kacmcgrath: To remove the search and social icons from header right section you can go to “Appearance => Theme Options => Header Right Section” and click on “Disable Header Right Section” and save changes.

    Then you can add “1. Catch Everest Social Widget” and “Search” widgets to Footer Area from “Appearance => Widgets”

    in reply to: New to theme help! #23383
    Sakin
    Keymaster

    @Drewmikita: Sorry Catch Everest Free theme only have option to use Featured Post Slider and will be linked to post. To add link to page, you need to use Featured Page Slider and to remove link or add link to custom link then you need to use Featured Image slider. For these slider choices, you need to upgrade to Catch Everest Pro theme. For more details, see the theme instruction of Pro version at http://catchthemes.com/theme-instructions/catch-everest-pro/

    Sakin
    Keymaster

    @jmb500: I see that you are using Catch Kathmandu Pro theme. So, you don’t need to add any custom css to make your footer menu visible in mobile devices. You can just go to “Appearance => Theme Options => Responsive Design” and then click on ”
    Enable Secondary & Footer Menu in Mobile Devices” and save changes.

    in reply to: Header image stretches too high in Internet Explorer #23377
    Sakin
    Keymaster

    @scg: Yes but WordPress also have remove support for IE8 and we should discourage very old browser. But yes if you like to make it work on IE8 then there are plugin like https://wordpress.org/plugins/wp-ie-enhancer-and-modernizer/ and other in http://wordpress.org/plugins/ which help you to support IE8.

    in reply to: Logo IMG on top of header IMG #23370
    Sakin
    Keymaster

    @cpoli: That is not possible by default in Catch Evolution theme. For that you need to build child theme and work on custom codes.

    The option that is available in Catch Evolution theme is that you can upload small logo image from “Appearance => Theme Options => Header Options => Logo url” and then upload your header image from “Appearance => Header”. So, in this way you will have logo at top left section and just under that you will have header image.

    in reply to: Change color of thin footer and headline line #23368
    Sakin
    Keymaster

    @Wes: You can add the following css in “Appearance => Theme Options => Custom CSS” box.
    #homepage-message { border-color: #318444; }

    in reply to: Header image stretches too high in Internet Explorer #23362
    Sakin
    Keymaster

    @scg: Sorry our theme supports only from IE9 onwards. IE8 is very old to give support. If you are searching for IE8 issues then see this http://catchthemes.com/support-forum/topic/site-not-working-in-internet-explorer-8/

    in reply to: Updating to Pro Version #23346
    Sakin
    Keymaster

    @tkabe: Child theme for Catch Everest Free version will not work instantly with Catch Everest Pro theme. In you current child theme for Catch Everest style.css you need to change the following:
    Template: catch-everest
    To
    Template: catch-everest-pro
    and
    @import url("../catch-everest/style.css");
    to
    @import url("../catch-everest-pro/style.css");

    in reply to: Post Image Size #23150
    Sakin
    Keymaster

    @nch: Sorry I don’t get it what you mean. Can you explain in reference with your site URL. See the theme instruction page http://catchthemes.com/theme-instructions/catch-everest/ where you can find Image Sizes.

    in reply to: Register-Button in the Header #23149
    Sakin
    Keymaster

    @MVS: Catch Everest Free theme doesn’t have Header Right Sidebar to add in the code. So, you need to build child theme and add it through child theme functions.php file with action hook.

    in reply to: Social Sharing plugin #23148
    Sakin
    Keymaster

    @rosavittoria: Not sure about that. You can download the plugin from http://wordpress.org/plugins/ and check in. Can you try in Jetpack plugin Sharing module.

    in reply to: Featured Slider with NO title vs. default tooltip #23147
    Sakin
    Keymaster

    @Juraj: You can just add the Image Title in your Featured Image Slider Options for image alt tag and then you can hide the slider text by adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #slider .featured-text { display: none; }

    in reply to: Featured slider static, conflict with link #23142
    Sakin
    Keymaster

    @cperera1978: Where did you got that script from. It’s conflicting script.

    in reply to: Responsive Menu #23138
    Sakin
    Keymaster

    @nadaadehn: If you don’t like select box in responsive menu and want it like in your desktop view. Then you can build child then and then copy catchbox_scripts_method() function and delete the following code

    //Responsive Menu
    wp_register_script('catchbox-menu', get_template_directory_uri() . '/js/catchbox-menu.min.js', array('jquery'), '1.1.0', true);
    wp_register_script('catchbox-allmenu', get_template_directory_uri() . '/js/catchbox-allmenu-min.js', array('jquery'), '201301503', true);
    
    //Check is secondayand footer menu is enable or not
    $options = catchbox_get_theme_options();
    if ( !empty ($options ['enable_menus'] ) ) :
        wp_enqueue_script( 'catchbox-allmenu' );
    else :
        wp_enqueue_script( 'catchbox-menu' );
    endif;

    Then add the following css in your child theme style.css file or in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (max-width: 960px) {
    	#branding ul.menu {
    		display: block;
    	}
    }
    in reply to: Header height #23137
    Sakin
    Keymaster

    @Copatka: I see that you are using mqtranslate plugin for multilingual. So, you can post in the plugin support forum. You can check this forum thread
    http://wordpress.org/support/topic/mqtranslate-not-working-in-widgets?replies=4

    in reply to: Creating seperate main & page backgrounds #23135
    Sakin
    Keymaster

    @Sheree: For spacing, you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 961px) {
    #primary {
        padding-left: 2%;
        width: 63.64%;
    }
    #secondary {
        width: 29.28%;
    }
    }
    @media screen and (max-width: 960px) {
    #primary, #secondary, .contact #primary, .contact #secondary {
        width: 96%;
        padding: 0 2%;
    }
    }

    For the Slider image, you can use “Featured Image Slider” and upload the image of your own choice. so, first you can crop the image as per your need using photo editing software like Photoshop, Photo Editor and so on. Then upload it.

Viewing 20 posts - 8,261 through 8,280 (of 14,505 total)