Viewing 20 results - 941 through 960 (of 2,398 total)
  • Author
    Search Results
  • #63837
    Sakin
    Keymaster

    @Dhuan: All those detail color options are there only Pro version.

    1. For slider text, you can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    #slider-wrap .featured-text {
        color: #fff;
    }

    2 and 3. These blocks are widget in Primary Sidebar. For that, you can just go to “Appearance => Widgets”. If you like to add image then you might want to drag and drop “Adspace Widget” to your sidebar and add images.

    4. The three boxes in footer are widgets in “Footer Area One”, “Footer Area Two” and “Footer Area Three” . For this also, you need to go to “Appearance => Widgets” and add in widget to these areas.

    #63827
    Sakin
    Keymaster

    @Harry: Post in your site URL and let me know what’s not working. Also post in your code. Are you using Static Page in homepage, then it will be as below:

    function catchresponsive_featured_slider() {
    	if ( is_front_page() ) : ?>
    	<section id="feature-slider">
    		<div class="wrapper">
    				Add in Video here 
    		</div><!-- .wrapper -->
    	</section><!-- #feature-slider -->
    	<?php endif;
    }
    #63811
    Sakin
    Keymaster

    @Harry: For that you need to replace previous code with the following code:

    function catchresponsive_featured_slider() {
    	if ( is_home() ) : ?>
    	<section id="feature-slider">
    		<div class="wrapper">
    				Add in Video here 
    		</div><!-- .wrapper -->
    	</section><!-- #feature-slider -->
    	<?php endif;
    }
    #63725
    Harry
    Participant

    Hi Sakin,

    Thank you for your respond.

    I’ve been using a child theme. When I added this code on in the functions.php, it doesn’t work.

    Here is the complete code, please let me know if i did anything wrong:

    <?php
    //
    // Recommended way to include parent theme styles.
    // (Please see http://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme)
    //
    add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
    function theme_enqueue_styles() {
    wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
    wp_enqueue_style( ‘child-style’,
    get_stylesheet_directory_uri() . ‘/style.css’,
    array(‘parent-style’)
    );
    }
    //
    // Your code goes below
    //

    function catchresponsive_featured_slider() { ?>
    <section id=”feature-slider”>
    <div class=”wrapper”>
    Add in Video here
    </div><!– .wrapper –>
    </section><!– #feature-slider –>
    <?php
    }

    #63708
    Sakin
    Keymaster

    @Harry: Sorry there in no option to add in Embedded video to replace the Featured Image Slider.

    But if you want then you can do it in custom way. For that, you need to build child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then just add the following code in your child theme functions.php file:

    function catchresponsive_featured_slider() { ?>
    	<section id="feature-slider">
    		<div class="wrapper">
    				Add in Video here 
    		</div><!-- .wrapper -->
    	</section><!-- #feature-slider -->
    <?php 
    }
    #62710

    In reply to: Image path incorrect

    Sakin
    Keymaster

    @Lizi: You shouldn’t add any files inside `catch-evolution-pro’ theme directory. All your new image should be added from “Add Media”. If you want to add image in post/page, then you need to add it from “Add Media” button in your page/post. If you just want to upload image, then you can upload it from “Media => Add New”.

    But if you are trying to change image in slider. Then you can upload image from “Appearance => Theme Options => Featured Slider”

    So, please post in your site URL and tell us what are you trying to do it. Then I can suggest you accordingly.

    #62704
    Sakin
    Keymaster

    @Lizi: There is no option to replace the static image with the featured slider as these two are different.

    If you want to ads in slider, then you need to go to “Appearance => Theme Options => Featured Slider => Slider Options”. Then you can select slider type as “Featured Image Slider” and if want large slider then you need to select “Full Width Slider” from Slider Layout. But if you want small one then you can select “Normal Width Slider”, then you can add image.

    #62701
    Sakin
    Keymaster

    @Peter: You can just add the following code in your child theme functions.php file

    function catchresponsive_featured_slider() {
    	echo do_shortcode('[banner_rotator hosting1]');
    }
    #62454
    Sakin
    Keymaster

    @philmi: I see that you are using Catch Responsive Free theme which has some limitation over Pro version. You can check additional information about pro version at http://catchthemes.com/theme-instructions/catch-responsive-pro/

    1. Yes, in free version you only have option to user “Featured Page slider” and “Featured Page Content”. For this, you just need to create pages from “Pages => Add New” and then you can select that page in your slider from “Appearance => Customize => Featured Slider => Feature Slider Options”.

    But for Slider and featured content, make sure you have added in featured image in those page. As featured image will show in your slider and featured content. For featured content, check this http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-wordpress-postpage/

    2. Where did you change the css. I hope you haven’t made modification to theme file like style.css. If you have done that then remove it as all the files inside ‘catch-responsive’ theme folder will be reverted back to original when you update the theme. So, best if to either use Custom CSS box at “Appearance => Customize => Theme Options => Custom CSS Options” box or if you have large css edit then it’s preferred to build child theme and add your css in your child theme style.css file.

    So, to change the font size of just date/comments, we called it at entry meta. For this, just change the font size in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    .hentry .entry-meta { font-size: 14px; }

    #62427
    Sakin
    Keymaster

    @Florence: Sorry you cannot mix “Featured Image Slider” and “Featured Post Slider” as these two have different functions.

    If you want to hide the content in your “Featured Post Slider” then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    #main-slider .entry-container { display: none; }

    Also you can use “Featured Image Slider” and for 3 languages text in slider, you can use plugin like WPML or Polylang. You can add image and title, then install any of these plugin. After that go that those plugin string translation and translate it.

    About the logo, we are using WordPress default custom header. So, if you those plugin have option to add in then you can.

    #62310
    Sakin
    Keymaster

    @matthewseanmclachlan: In Catch Flames Pro, you can go to “Appearance => Theme Options => Featured Slider => Slider Options” and in slider type, you can select “featured Image Slider”. Then you can upload image of any size you like.

    #62133
    Sakin
    Keymaster

    @Susie: We have option to display Featured Content either in Homepage only or Entire Site. There is no option to make that Featured Content only appear on specific pages. You might have to look for plugin to add featured content in pages.

    But you can make that features slider to show on “Entire Site” from “Appearance => Customize => Featured Content => Featured Content Options => Enable Featured Content on” and the add in css to hide in all pages and show only in that pages. If you want to do this, then enable it in all pages and send me the page url where you want to show it only.

    #62066
    ami.mehta70
    Member

    I am using catch responsive theme. I did update my theme today to catchresponsive version 1.8 today morning. After which the featured slider image wont load.

    please help ASAP

    Thanks and regards,
    Ami

    (http://www.amimehta.in)

    #61992
    Sakin
    Keymaster

    @ginabrasseur:
    1. Looks like you are using “Image Slider” as the Slider Type. In this case, you can just go to “Appearance => Theme Options => Featured Slider => Featured Image Slider Options” and change the title for “Image Title”. This title will be used for image alt tags.

    But if you want to make it different from Title then you need to create child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then copy function adventurous_image_sliders() from adventurous-slider.php file to your child theme functions.php file and edit the alt tag as per your need.

    2. It’s same for Featured Content. The image take the alt tag from “Appearance => Theme Options => Featured Content => Featured Content Options”. SO, you can change the title for “Image Title”

    But if you want to make it different from Title then you need to create child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then copy function adventurous_homepage_featured_content() from adventurous-featured-content.php file to your child theme functions.php file and edit the alt tag as per your need.

    #61881
    Eric
    Participant

    Dear Sakin,

    I am trying to add a bit of space between my main menu navigation and the featured image slider. What I have found on this site doesn’t seem to work on my site. I am using Catch Responsive Pro and my url is http://www.jpjkd.net

    Thanks,
    Eric

    #61750
    Sakin
    Keymaster

    @Florence: To show textbox only in selected image and then to show simple image without link, you need to upgrade to Pro version. Where you will get option to user “Featured Image Slider” instead of “Featured Post Slider”. When you select Featured Image Slider, you can upload image as per your need. Adding link and text is optional.

    For font size, you can adjust the font size in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:

    /* Slider Content Font Size */
    #main-slider .entry-container { font-size: 16px; }
    /* Slider Content Title Font Size */
    #main-slider .entry-container .entry-title { font-size: 26px; }
    #61502
    Sakin
    Keymaster

    @zagy07: In Catch Flames free theme, you have option to use Featured Page Slider. For that you just need to go to “Appearance => Theme Options => Featured Slider => Slider Options” and select “Featured Page Slider” in slider type. After that, you can select the page in “Featured Page Slider Options” box. After you select and save it. It will take featured image and expert text of those pages. So, you will have excerpt text overly in slider.

    If you are not talking about this then please explain in reference with your site URL.

    #61447

    In reply to: Slider

    Sakin
    Keymaster

    @Simon: In your site, you have different length of text and that is causing shifting in height. I see that you have split content using more tag <!--more--> in your page. So, you have to be careful about the amount of text that you want to display. If you keep excerpt text length in all slider page then it will fix the issue. Otherwise, you can try adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    #slider-wrap .featured-text { min-height: 75px; }

    #61419
    Sakin
    Keymaster

    @Cattext:
    1. In Adventurous Free theme slider, it take the image size of Width: 1600px and Height: 600px. But if the image is smaller then this, then it will take your default image. So, when you add featured image, just upload the image with the size of 1600px width and 400px height. Please post in your site URL so that I can check in.

    2. I don’t know what type of colored blocks are you trying to implement it. So, can you add in your site which is using Catch Kathmandu theme.

    #61414
    Sakin
    Keymaster

    @Dolomie: Sorry that option is not there. For that, you need to build child theme and then copy fullframe_page_slider() from fullframe-featured-slider.php file to your child theme functions.php file. Then remove the link from the image.

Viewing 20 results - 941 through 960 (of 2,398 total)