Forum Replies Created

Viewing 20 posts - 4,501 through 4,520 (of 14,509 total)
  • Author
    Posts
  • in reply to: Size Featured Image in Default Layout (Content) #54094
    Sakin
    Keymaster

    @Sven: Ok just go to “Appearance => Customize => Theme Options => Layout Options” and in “Archive Content Layout”, you need to select “Excerpt Image Top” and click on “Save & Publish”.

    in reply to: H1 title on site #54093
    Sakin
    Keymaster

    @nirym: Sorry your question is but confusing. Where are you trying to add in H1 title. If you check out demo site http://catchthemes.com/demo/catch-everest/, the site title is in H1 tag and also the page title is in H1 tag. Also check out your visual editor styles if you are trying to add H1 tag in your page/post content. For that check our https://en.support.wordpress.com/visual-editor/#styles

    in reply to: Featured Content Option #54092
    Sakin
    Keymaster

    @mikalo: You can split content using more tag <!--more--> in your page. So, all the text before <!--more--> tag will show in Featured Page Content. For more about <!--more--> tag check out http://devotepress.com/wordpress-writing-editing/how-to-split-content-using-the-more-tag-option/

    in reply to: Changing Font Sizes #54091
    Sakin
    Keymaster

    @Carbo: It have option to change the font family not the font size. For font size we can use the Custom CSS to change it. For example, you can change the font size in following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (min-width: 990px) {
        /* Content/default body font size */
        body, button, input, select, textarea { 
            font-size: 15px; 
        }
        /* H1 to h6 heading font size */
        h1 {
    	font-size: 30px;
        }
        h2 {
    	font-size: 28px;
        }
        h3 {
    	font-size: 24px;
        }
        h4 {
    	font-size: 20px;
        }
        h5 {
    	font-size: 18px;
        }
        h6 {
    	font-size: 16px;
        }
        /* Page title, promotion headline, featured content headline sizes */
        .entry-title, #promotion-message h2, #featured-content #featured-heading {
            font-size: 30px;
        }
    }
    in reply to: Remove all RSS Feed #54090
    Sakin
    Keymaster

    @Carbo: Yes, you can build child theme and add it in your child theme functions.php file.

    You can also check this tutorial:
    http://www.wpbeginner.com/wp-tutorials/how-to-disable-rss-feeds-in-wordpress/

    in reply to: Post Titles Disappeared #54089
    Sakin
    Keymaster

    @Marcus: looks like there is font size changed to 0 for “Page/Post Title Font Size” in “Appearance => Theme Options => Font Size Options”. You can either, check on “Reset Font Size?” and save changes or change that font size and save changes.

    in reply to: Removal of White Space Above Header #54088
    Sakin
    Keymaster

    @Jan Deelstra: Yes, post in your site URL so that I can check in exactly which area are you talking about. For now, you can try adjusting the padding in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
    #header-content { padding: 40px 0; }

    in reply to: Social Media Widget Alignment #54087
    Sakin
    Keymaster

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

    #supplementary .social-profile {
        float: none;
        margin: 0;
        text-align: center;
    }
    in reply to: Missing Javascript file #54017
    Sakin
    Keymaster

    @tualatinweb: Thanks we have uploaded new version in WordPress.org and now need to wait for WordPress.org theme review team to make it live soon.

    in reply to: Slider size #53999
    Sakin
    Keymaster

    @Ita: But your site in under construction. I cannot view it. I added that in Full Frame Pro custom css box and it’s working fine.

    in reply to: Missing Javascript file #53995
    Sakin
    Keymaster

    @tualatinweb: Thanks we will work on it.

    in reply to: Missing Javascript file #53991
    Sakin
    Keymaster

    @tualatinweb: The worst part is I am not able to find the issue but I see the issue has been reported in https://github.com/malsup/cycle2/issues/384

    So, you fix that error by uploading jquery.cycle2.js.map file in
    catch-responsive/js/jquery.cycle/

    in reply to: Slider size #53936
    Sakin
    Keymaster

    @Ita: ok then just add this in “Appearance => Customize => Theme Options => Custom CSS options”:
    #feature-slider .wrapper { width: 75%; }

    in reply to: How to remove author ? #53932
    Sakin
    Keymaster

    @5er: Thanks for your appreciation and if you like Adventurous theme then please support it by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/adventurous?rate=5#postform. We would really appreciate it. Thanks 🙂

    in reply to: Indvidual Header Featured Image #53927
    Sakin
    Keymaster

    @webtussi: Yes, you can enable slider in all pages. For that, just go to “Appearance => Customize => Featured Slider Options => Featured Slider Settings”, Select “Entire Site” in “Enable Slider on” option and click on “Save & Publish”,

    For Header image, you can control all the settings from “Appearance => Customize => Header Image”. Don’t forgot to check in “Enable Featured Header Image on” option. Sorry there is no option to add text in the header image. You can upload image with the text on it.

    in reply to: How to remove author ? #53924
    Sakin
    Keymaster

    @5er: If you want to hide all then you can add the following css instead of above css:
    .entry-meta { display: none; }

    Sakin
    Keymaster

    @webtussi: Ok you can post here or create new that’s your choice

    Sakin
    Keymaster

    @stonecropsister: If you have just added this theme in your old site then first you need to regenerate thumbnails using plugin Regenerate Thumbnail. It’s mentioned in theme instructions page at http://catchthemes.com/theme-instructions/catch-evolution/

    Then, as per Catch Evolution Free version, The header image is supposed to be changing with the featured image of post/page. Only in Pro version you have option to make it different or same.

    If you want same image to display in all page, maybe you want to try uploading image as logo from “Appearance => Theme Options => Header Options”.

    But if you want to use header image and want same header image to show in all pages/posts then you need to build child theme. For child them check out http://catchthemes.com/blog/create-child-theme-wordpress/. Then add the following function in you child theme functions.php file

    function catchevolution_featured_header() { 
    	global $_wp_default_headers;
    	// Header Image
    	$header_image_path = get_header_image();
    	if ( get_header_image() ) : ?>
    		<div id="header-image">
    			<img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" />
    		</div>
    	<?php endif; 
    }
    in reply to: Responsive Menu disappears #53908
    Sakin
    Keymaster

    @Mahartma: Thanks for your appreciation. Also, if you like Catch Box theme than you support it by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-box?rate=5#postform . We would really appreciate it. Thanks.

    in reply to: Missing Javascript file #53904
    Sakin
    Keymaster

    @tualatinweb: I am not being able to find this issue. But search in Google I see this script has issue. Which file did you added in.

    Also the map is for development version of site and it is not necessary for the production version. So, we will remove that in next version udpate.

Viewing 20 posts - 4,501 through 4,520 (of 14,509 total)