Forum Replies Created
-
AuthorPosts
-
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;
}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.phpfile 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.
February 22, 2015 at 9:05 pm in reply to: Coding to place images and sliders on the background footer? #52176Sakin
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;
}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…)
