Forum Replies Created

Viewing 20 posts - 4,861 through 4,880 (of 14,509 total)
  • Author
    Posts
  • in reply to: Changed fonts don't respond on Android #52226
    Sakin
    Keymaster

    @Carla: Please validate your CSS in child theme. It’s not show it should work. Can you take expert help.

    For example the following text. You cannot add text like that.
    Child CSS Parent CSS Files

    If you want to add text then it should be as:
    /*Child CSS Parent CSS Files*/

    Also the code why you have added the following:
    ruimte tussen titel en tagline }

    Sorry I will not be able to do detail review of your child theme. So, if you want to change font only. Then I suggest you to remove your child theme and just use parent theme and then use plugin to add font support. As child theme and advance css editing requires HTML,CSS and PHP knowledge.

    in reply to: Responsive header image #52225
    Sakin
    Keymaster

    @laurat107: Sorry I only support WordPress Theme developed by us that is by Catch Themes.

    in reply to: Previous/Next #52220
    Sakin
    Keymaster

    @Kim: Sorry I don’t know about it. You might need to hire developer to work on it. In theme, we are just allowed to used the default core function which does that. Maybe search for plugin.

    in reply to: How to add images underneath main slider? #52187
    Sakin
    Keymaster

    @Troy: To add more slider image, you just need to go to “Appearance => Theme Options => Featured Slider => Slider Options” and in “Number of Slides” you can increase the number.

    Sorry there is no option to add image under the slider.

    in reply to: Make logo full width and fix menu #52186
    Sakin
    Keymaster

    @andriansah: nice 🙂

    in reply to: Small stuff #52185
    Sakin
    Keymaster

    @Kim: Sorry I don’t get it what you mean.

    in reply to: Add new fonts #52184
    Sakin
    Keymaster

    @Keith: Post in your site URL so that I can check in how you have use plugin to add that font then I can suggest you css.

    in reply to: Homepage Featured Content not displaying properly on iPad2 #52183
    Sakin
    Keymaster

    @Josh: Ok I have replied in all the email you have send me.

    in reply to: Google Meta Description #52182
    Sakin
    Keymaster

    @Schelbert: I don’t know how you have added in Meta Description. We don’t have anything in theme to control Meta Description and we recommend WordPress SEO by Yoast plugin to control Meta Description.

    Also I couldn’t check in as you have W3 total Cache plugin optimized. So, use that plugin and change your description as per your need and don’t forgot to clear your cache from W3 Total Plugin after you make any changes.

    in reply to: Changed fonts don't respond on Android #52181
    Sakin
    Keymaster

    @Carla: When you remove that media screen. You forgot to remove that closing bracket. }

    For example, you have css as
    #site-title {
    font-size: 54px;
    font-family: Cochin, sans-serif,Arial;
    }}

    This should be
    #site-title {
    font-size: 54px;
    font-family: Cochin, sans-serif,Arial;
    }

    Another same issue:
    #site-description {
    font-size: 18px;
    font-style: Cochin, sans-serif,Arial;
    }}

    This should be:
    #site-description {
    font-size: 18px;
    font-style: Cochin, sans-serif,Arial;
    }

    in reply to: Post/page full width images? #52180
    Sakin
    Keymaster

    @oly: Theme doesn’t have that. You might want to look for plugin to do that.

    in reply to: Removing header border #52178
    Sakin
    Keymaster

    @daniel12: This theme is not ideal for large header image. Maybe try other theme like Catch Adventurous.

    In Simple Catch Theme, to add large image, you need to build child theme and then copy content.php file to your child theme and replace

    <div class="col3 post-img">
    	<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'simplecatch' ), the_title_attribute( 'echo=0' ) ); ?>"><?php the_post_thumbnail( 'featured' ); ?></a>
    </div> <!-- .col3 -->

    With the following code:

    <div class="col8 post-img">
    	<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'simplecatch' ), the_title_attribute( 'echo=0' ) ); ?>"><?php the_post_thumbnail( 'full' ); ?></a>
    </div> <!-- .col3 -->

    Again replace the code
    <div class="col5">
    with the following code
    <div class="col8">

    About the footer, it’s same you need to build child theme and work on it. Only Pro version give you Footer Editor in theme options panel to change the footer text.

    in reply to: Coding to place images and sliders on the background footer? #52176
    Sakin
    Keymaster

    @Troy: there is no option to do that. If you want to add image as background in the footer then you can add custom css in “Appearance => Theme Options => Custom CSS”

    You can check this example code: In the imageurl, you can add your image url and #000 is for color:
    #site-generator {
    background: url("imageurl") repeat scroll center top #000;
    }

    in reply to: Disable image resize #52175
    Sakin
    Keymaster

    @jaxaviation: Sorry I don’t get it what you want. Can you let me know the desire result.

    If you read Catch Evolution theme instructions at http://catchthemes.com/theme-instructions/catch-evolution . It shows the image sizes that theme uses. This is to match the design and width of the theme. T

    This auto featured image and the excerpt text is shown when you have selected Content Layout as “Excerpt/Blog Display” from “Appearance => Theme Options => Layout Options”. If you don’t like this then you can choose “Full Content Display” as your Content Layout. This will load full content from your post that you have inserted. This option will not show the featured image. Then you can use (more…)