Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@moultrup:
1. You can add in the following css in “Appearance => Customize => Theme Options => Custom CSS Options”@media screen and (min-width: 991px) { #feature-slider .cycle-prev, #feature-slider:hover .cycle-prev { left: 80px; opacity: 1; } #feature-slider .entry-container { background: #444; background: rgba(0,0,0,0.6); } }2. Do you mean the header toggle bottom, you can disable option in Pro version. In free version, you need to add in the following css in “Appearance => Customize => Theme Options => Custom CSS Options”
#header-toggle { display: none; }3. For this, you can adjust the padding-bottom in the following css, for home don’t cahnge it and then add it in “Appearance => Theme Options => Custom CSS” box:
@media screen and (min-width: 991px) { /* For All Pages */ #promotion-message .wrapper, #promotion-message .section { padding-bottom: 20px; } /* For Homepage */ .home #promotion-message .wrapper, .home #promotion-message .section { padding-bottom: 20px; } }Sakin
Keymaster@kazcchi: Sorry I don’t understand it properly what do you mean my Top Page. Can you explain in reference with your site URL.
About the slider, you can activate Featured Page Slider which is jquery cycle slider only. If you are trying to add in different slider then you need to build child theme and add in. For child theme, check out http://catchthemes.com/blog/create-child-theme-wordpress/
Sakin
Keymaster@Thomas: For image sizes, please check in theme instructions page at http://catchthemes.com/theme-instructions/catch-responsive-pro/.
If you are checking in from Catch Responsive Pro theme, then in Single Page/Post Image Layout you will see option “Default, Featured Image, Full Image, Slider Image and Disable Image”
Yes, you can control it. Can you send me your site URL and then I will check in.
Sakin
Keymaster@tutyga: Do you want to do it for all or just few social icons. Here goes the css for faebook, twitter, google plus and pinterest. For this, you can just add the following css in “Appearance => Theme Options => Custom CSS” box:
ul.social-profile li.facebook a { background-position: 0 -43px; } ul.social-profile li.twitter a { background-position: -44px -43px; } ul.social-profile li.google-plus a { background-position: -173px -43px; } ul.social-profile li.pinterest a { background-position: -216px -43px; }Sakin
Keymaster@Steven: Ok that is called infinite scroll on click. For this, you can need to install Jetpack Plugin and activate Infinite Scroll module.
Sakin
Keymaster@Robert: I see that you are using Latest Posts in your Reading Settings. If you only want single page then you should select Static Page. So, for this you need to go to “Settings => Reading”, click on “A static page (select below)” and in “Front page”, select the page you want to show. This still show your static page with format.
But if you still want to keep the latest post and want to get the format of the post. Then you need to go to “Appearance => Customize => Theme Options => Layout Options” and in “Archive Content Layout” option, you need to select “Show Full Content” and save changes.
Note: You were not able to add link to your site. As you are in test server and it treat that name as spam. So, it sent to spam folder.
Sakin
Keymaster@Bert: This is from Theme but using WordPress default theme css.
Sakin
Keymaster@Keir: Ok thanks for the info.
Sakin
Keymaster@Jan: The height will be changed automatically as per the width in responsive design. Either height or width needs to be auto. But for responsive design height should be auto.
Sakin
Keymaster@Jan: The height if your image in the slider depends on the image you have uploaded. Just upload the larger image if you need large image. Height will not work like that in percentage.
Sakin
Keymaster@Marco: Is that issue in Google Chrome. Can you add the following css in “Appearance => Theme Options => Custom CSS” box and check in.
body > div { font-size: 1.4rem; }Sakin
Keymaster@Helle Naia: It’s already been answered in http://catchthemes.com/support-forum/topic/adding-a-logo-and-adjusting-padding/. Please don’t post same question in 2 places.
Sakin
Keymaster@justinillig: As per your menu, the following setting will work best. Just add the following css in “Appearance => Theme Options => Custom CSS” box:
.sb-holder { background-color: #e2c8ca; font-family: Bitter,sans-serif; font-weight: bold; text-transform: uppercase; } .sb-selector:link, .sb-selector:visited, .sb-selector:hover { color: #fff; text-shadow: none; } .sb-options { background-color: #fff; } .sb-options a, .sb-options a:link, .sb-options a:visited { color: #6b6b6b; font-weight: bold; } .sb-options a:hover, .sb-options a:focus, .sb-options a.sb-focus { background-color: #e2c8ca; color: #fff }Sakin
Keymaster@PrimoFamilia: To move the featured content, you can just go to “Appearance => Customize => Featured Content Options => Featured Content Settings” and check option “Check to Move above Footer”.
April 13, 2015 at 7:45 pm in reply to: How do i move facebook comments box below my traditional theme comments? #55673Sakin
Keymaster@meekglorious: This depends on the plugin you have added in. You code should be added below
comments_template()that you will find insimplecatch_content()function. But there should be option in your plugin.Sakin
Keymaster@Helle Naia: You can try adding in the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#logo-icon { float: right; }April 13, 2015 at 7:30 pm in reply to: Error in Hello World post with fresh installed WordPress and Theme #55670Sakin
Keymaster@Jürgen: Thanks 🙂
Sakin
Keymaster@Steven: This is strange. I check in both Simple Catch and Simple Catch Pro theme, both have same navigation, that is Previous and Next. I don’t know how you got it Older Posts and Newer Posts in Simple Catch Theme. Both the theme uses same function
simplecatch_content_nav()for that.If you want to edit that then you need to build child theme. You can also download sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/ and then copy function
simplecatch_content_nav()fromsimplecatch_functions.phpfile in Simple Catch Pro theme. Then add that in your child themefunctions.phpfile.Then replace the following code:
<ul class="default-wp-page clearfix"> <li class="previous"><?php next_posts_link( __( 'Previous', 'simplecatch' ) ); ?></li> <li class="next"><?php previous_posts_link( __( 'Next', 'simplecatch' ) ); ?></li> </ul>With the code as below:
<ul class="default-wp-page clearfix"> <li class="previous"><?php next_posts_link( __( 'Older Posts', 'simplecatch' ) ); ?></li> <li class="next"><?php previous_posts_link( __( 'Newer Posts', 'simplecatch' ) ); ?></li> </ul>Sakin
Keymaster@Dona: If you cannot make it as background then you can make that image width 20% always. Like adding in the following css in “Appearance => Theme Options => Custom CSS” box:
.page-id-85 .wp-image-73 { width: 20%; } -
AuthorPosts
