Forum Replies Created

Viewing 20 posts - 3,321 through 3,340 (of 14,509 total)
  • Author
    Posts
  • in reply to: Disable author date and category #59807
    Sakin
    Keymaster

    @csc: You can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .entry-header .entry-meta { display: none; }

    in reply to: fitting images in featured content row #59806
    Sakin
    Keymaster

    @calchandoman: In Full Version, you have option to select Featured Content Type from Featured Page Content to “Featured Image Content”, where you will get independent image upload for that image and it will load the original image that you upload it.

    in reply to: Tagline Font Size #59789
    Sakin
    Keymaster

    @Kaydev: To change the font size of tagline, you can change the size in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    .site-description { font-size: 13px; }

    in reply to: Move Secondary Menu Above Featured Slider #59788
    Sakin
    Keymaster

    @Kaydev: There is no option to move secondary menu above the Featured Slider. For that you need to build child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then add the following code in your child theme functions.php file.

    function fullframe_unhook_functions() {
    	remove_action( 'fullframe_before_content', 'fullframe_secondary_menu', 20 );
    }
    add_action( 'init', 'fullframe_unhook_functions' );
    
    add_action( 'fullframe_before_content', 'fullframe_secondary_menu', 5 );
    in reply to: Sidebar Dropdown Menu #59787
    Sakin
    Keymaster

    @Kim: Why it that? If you go to “Appearance => Widgets” and select Category Widget, you will see option to Check in “Show as dropdown”. See this https://en.support.wordpress.com/widgets/categories-widget/

    in reply to: How can I disable the comments feature #59782
    Sakin
    Keymaster

    @MRGuerra: You can remove the comment by bulk editing those posts. See this screenshot on how to turn of https://www.pinterest.com/pin/548594798333128024/. Or you can edit page/post and add or remove comment. See this http://devotepress.com/wordpress-writing-editing/how-to-enable-comments-in-wordpress/

    in reply to: Turn off Cmments in Custom posts #59781
    Sakin
    Keymaster

    @florence: You can remove the comment by bulk editing those posts. See this screenshot on how to turn of https://www.pinterest.com/pin/548594798333128024/. Or you can edit page/post and add or remove comment. See this http://devotepress.com/wordpress-writing-editing/how-to-enable-comments-in-wordpress/

    in reply to: Disable Responsive view #59780
    Sakin
    Keymaster

    @Daphne: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    @media screen and (max-width: 990px) {
    	.nav-primary, .nav-header-right, #header-right-menu-widget, .nav-secondary, .nav-footer { display: block; }
    	#search-toggle { display: none; }
    }
    in reply to: LeadPages plugin not working #59779
    Sakin
    Keymaster

    @Liz: This is not theme related issue. Error 404 is never theme related issue. It’s between your server and plugin. Please contact your website hosting server support and check in. As your permalink settings in “Settings => Permalinks” has custom structure index.php. So, it might be related to that. It should be like http://lizcopeland.co.uk/index.php/minisite4

    in reply to: How to change the heading font size and type? #59777
    Sakin
    Keymaster

    @skyoung: Sorry, I am snot sure which heading you want to change. So, I am giving you css to change font family and size of site title and page title. Just change the size and family as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    /* Site Title Font */
    .site-title {
        font-family: "Droid Sans",sans-serif;
        font-size: 38px;
    }
    /* Page-Post Font */
    .entry-title, 
    #promotion-message h2,
    #featured-content #featured-heading {
        font-family: "Droid Sans",sans-serif;
        font-size: 30px;
    }

    Note: when you change the font family, make sure you change with Web safe font or you need to add with font plugins.

    in reply to: fitting images in featured content row #59752
    Sakin
    Keymaster

    @calchandoman: You are using Full Frame Free theme, which uses Featured Page Content. So, it will automatically take featured image of that page with image size of 400px by 225px. To change this in free version, you need to build child theme and edit the image size. But if you upgrade to pro version, you can use Featured Image Content instead of Featured Page Content, where you can upload image of your own choice and link to anywhere you like.

    To reduce the space in left and right of featured content page, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    @media screen and (min-width: 991px) {	
    	#featured-content .hentry {
    		padding-left: 10px;
    		padding-right: 10px;
    	}
    }
    in reply to: Previous and Next Post css and Pro Version #59751
    Sakin
    Keymaster

    @jinsalaco:
    1. For post navigation, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #nav-above { display: block; }
    #nav-below { display: none; }

    2. Regarding Support, I treat both equally as support is very important. But supporting pro theme in easier as there are lot of features on and it’s more stable.

    3. There are lot of additional features in Pro version, which you can check out at theme instructions page at http://catchthemes.com/theme-instructions/catch-kathmandu-pro/

    in reply to: Footer Widget background #59738
    Sakin
    Keymaster

    @Dennis: You can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    #supplementary {
        background-color: #fff;
    }
    in reply to: Center Captions #59737
    Sakin
    Keymaster

    @Kim: You can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .wp-caption .wp-caption-text {
        text-align: center;
    }
    in reply to: use interior page as home page #59736
    Sakin
    Keymaster

    @paul: Sorry I don’t get in what you mean. Can you explain more please.

    in reply to: Templates do not work #59735
    Sakin
    Keymaster

    @Dennis: that’s nice you figure it out. thanks 🙂

    in reply to: Crash when update the theme #59734
    Sakin
    Keymaster

    Hello Peter,

    What was the issue? Do you have any error log? Can you check with your Website Server support as well. As I don’t see any issue in our side.

    Regards,
    Sakin

    in reply to: How to remove the header on other pages #59733
    Sakin
    Keymaster

    @Dennis: Sorry there is no option like that. You might have to build child theme and create new page template for that. Right now, you can just create a page without sidebar. Then how about hiding that particular page header with CSS. In this case you don’t need to build child theme. For that you just need to create page and assign “Sidebar Layout Options” as “No Sidebar” and then send me that page URL and I will send you custom css to hide that page header.

    in reply to: How to make a page have only the right hand sidebar #59732
    Sakin
    Keymaster

    @Dennis: Nice that you found it. Thanks 🙂

    in reply to: How to remove the slider from a static home page? #59731
    Sakin
    Keymaster

    @Dennis: Thanks yes there is option in “Appearance => Theme Options => Featured Post Slider => Slider Options”

Viewing 20 posts - 3,321 through 3,340 (of 14,509 total)