Forum Replies Created

Viewing 20 posts - 4,501 through 4,520 (of 14,497 total)
  • Author
    Posts
  • 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.

    in reply to: Translation in french #53901
    Sakin
    Keymaster

    @phoenix2875: We don’t have French Translation of Catch Responsive Theme. You need to create fr_FR.po and fr_FR.mo file using poedit software. Poedit is free software and you can download it from http://poedit.net/

    If you find difficult then you can open catchresponsive.pot file in Catch Responsive theme languages folder and then translate all the terms there any any document file. After you complete you can email me and I will include that in theme.

    in reply to: Search Box #53899
    Sakin
    Keymaster

    @Kim: This is default WordPress Search. You may find plugin which can modify that. So try searching for plugin.

    in reply to: Change Navigation Background and Font Color #53898
    Sakin
    Keymaster

    @Vanessa: Yes that’s normal we only support from IE10 onwards. IE8 is too old and it doesn’t support much of HTML5 and CSS3 codes. Even WordPress doesn’t support IE8.

    in reply to: Date Link #53897
    Sakin
    Keymaster

    @Kim: For that you need to build child theme and then copy function catchflames_posted_on() in your child theme functions.php file and remove the link.

    Sakin
    Keymaster

    @Laura Pio:
    1. For Promotion headline and subheadline text color, you can change the color code in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    /* Promotion Headline Color */
    #promotion-message h2 { color: #404040;  }
    /* Promotion Sub-Headline Color */
    #promotion-message p { color: #404040; }

    2. You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    .archive-post-wrap { border: none; }

    3. You need to be more clear about this. Since, I don’t have your site URL proving support is not that easy as I need to make it log of assumption.
    For border, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    #featured-content img { border: 1px solid #000; }

    But for size, it take default size Width: 400px and Height: 225px added in your page as featured image. If you upload image larger then this then it will crop exactly to this to match responsive design. But if you upload featured image in your page less then this then it will load your original image. But if you want flexible image and all then you might need to upgrade to pro version where you have option to use “Featured Image Content”, where you just uplaod the image as per your need. See the theme instructions for more details at http://catchthemes.com/theme-instructions/full-frame/

    4. To check the gallery, your site needs to live. There are various way users adds in Gallery. Our theme uses like this http://catchthemes.com/demo/full-frame/gallery/

    in reply to: Remove Search Box #53893
    Sakin
    Keymaster

    @fletchsc:
    1. I see that you have remove the Site Title. You shouldn’t remove the site title for Search Engine Optimization. But yes, if you don’t like to show in your site header then you can just hide it. For that, go to “Appearance => Customize => Site Title & Tagline”, type in Site Title and tagline which describe your site. Then to hide it just uncheck “Display Header Text” and save changes.
    2. To hide the search box/ Header Right Sidebar, you can just go to “Appearance => Customize => Theme Options => Custom CSS Options” box and add the following css:
    .sidebar-header-right { display: none; }

    in reply to: Slider size #53890
    Sakin
    Keymaster

    @Ita: Can you post in your site URL and let me know what size you want to make it. Then I can check in.

    in reply to: Additional Social Media Link #53888
    Sakin
    Keymaster

    @l: Yes, for that you need to copy function simplecatch_headersocialnetworks() in you child theme and then change the following code:

    //MySpace
    if ( !empty( $options[ 'social_myspace' ] ) ) {
    	$simplecatch_headersocialnetworks .=
    		'<li class="myspace"><a href="'.esc_url( $options[ 'social_myspace' ] ).'" title="'.sprintf( esc_attr__( '%s on MySpace', 'simplecatch' ),get_bloginfo('name') ).'" target="_blank">'.get_bloginfo( 'name' ).' MySpace </a></li>';
    }

    Note: after changing this you need to change any value in Theme Options panel to clear the transient cache otherwise you will see changes only after 24hours.

    Replace it with the following:

    //MySpace
    if ( !empty( $options[ 'social_myspace' ] ) ) {
    	$simplecatch_headersocialnetworks .=
    		'<li class="myspace"><a href="'.esc_url( $options[ 'social_myspace' ] ).'" title="'.sprintf( esc_attr__( '%s eLetter', 'simplecatch' ),get_bloginfo('name') ).'" target="_blank">'.get_bloginfo( 'name' ).' eLetter </a></li>';
    }
    in reply to: Homepage Menu Not Syncing With Back End #53887
    Sakin
    Keymaster

    @michellebergmann: You site is not visible, look like it requires login to view it. Also the link that you send me is for Gallery Archive page, not the gallery page. If it’s default WordPress gallery then it will just how one image and in the below it will say like “This gallery contains 23 photos.”.

    We also found one issue when viewing default WordPress Gallery single post. We have just uploaded new version 2.2.1 in WordPress.org and it will be live soon after the WordPress.org theme review team approves it.

    in reply to: Change Navigation Background and Font Color #53884
    Sakin
    Keymaster

    @Vanessa: I checked in from my IE11 and IE 10 and it’s working fine. Check your IE browser. You can also test it from http://netrenderer.com/

    in reply to: Change Navigation Background and Font Color #53882
    Sakin
    Keymaster

    @Vanessa: I can see our site Live. It must be your server was out at that time.

    in reply to: Gradient page background instead of solid color #53881
    Sakin
    Keymaster

    @kyle: Remove that background image and background color from your customizer and then add the following css in “Appearance => Theme Options => Custom CSS” box:

    body {
    	background: #BA3027; /* Show a solid red color for older browsers */
    	background: -moz-linear-gradient(#BA3027, #000000);
    	background: -o-linear-gradient(#BA3027, #000000);
    	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#BA3027), to(#000000)); /* older webkit syntax */
    	background: -webkit-linear-gradient(#BA3027, #000000);
    }

    Yes, but this custom background in customizer is from WordPress core so it’s not good practice to modify core. If the WordPress core adds it then it will be there.

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