Forum Replies Created

Viewing 20 posts - 4,861 through 4,880 (of 14,499 total)
  • Author
    Posts
  • 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…)