Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@crankit: It’s because of opacity. You can simply add the following css in “Appearance => Theme Options => Custom CSS” box:
#hgroup-wrap a:hover img { opacity: 1; }Sakin
Keymaster@notjustblack: Thanks for your appreciation and review 🙂
Sakin
Keymaster@luvharris: To change the footer sidebar area to white from blue, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#footer-sidebar { background-color: #fff; }Then later, you might want to change the border color as well. For that, change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
#colophon { border-color: #1b5f7d; }Sakin
Keymaster@leotrim77: Try adding in the following css in “Appearance => Theme Options => Custom CSS” box:
#content .type-page .entry-title { display: none; }Sakin
Keymaster@harriet: Add the following css in “Appearance => Theme Options => Custom CSS” bnox:
.home #content .entry-title a:hover,
.home #content .entry-title a:focus,
.home #content .entry-title a:active {
color: #eee;
}Sakin
Keymaster@notjustblack:
1. You can add the following css in “Appearance => Theme Options => Custom CSS” box:
.search-results .entry-meta { display: none; }2. Search result page will show featured image of that post. Other then that you need to build child theme and customize it.
3. Just go to “Appearance => Theme Options => Excerpt/Mote Tag Settings” and change More Tag Text and Excerpt length(words).
Sakin
Keymaster@Marcus: Simply add the following css in “Appearance => Theme Options = Custom CSS” box:
#sidebar-header-right { display: none; }Sakin
Keymaster@Kenneth: You can try adding in the following css in “Appearance => Theme Options => Custom CSS” box:
#branding #access { text-align: center; }
#branding ul.menu li { display: inline-block; float: none; }Sakin
Keymaster@Lisa: Sorry there is no option to do that. If you know the coding then you can build child theme and add image in that area.
Sakin
Keymaster@livlevi2: There is option in “Appearance => Theme Options => Color Options => Site Color Options”. There you can change Footer Background Color, Footer Background Sidebar Color. Further, if you want to change color of any item that is not there in color option then please add in your site URL explain which element color you want to change with the color code. Then I will provide you custom css.
Sakin
Keymaster@albertoc: Can you check your setting at “Appearance => Theme Options => Homepage Settings => Homepage/Frontpage Settings”. Since, you don’t need front page or latest post, you can just “Uncheck” option “Enable Latest Posts or Page” and save changes.
Further, if this doesn’t fix it then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
.home #main { padding-top: 0; }Sakin
Keymaster@Kim: After you set it up menu as Fixed Header Top then don’t forget to enable Fixed Header Top bar from “Appearance => Theme Options => Fixed Header Top Options =>
Enable Fixed Header Top”.Sakin
KeymasterOk then remove the previous css that I gave you. Which is
#header-right {
margin-right: 10px;
margin-top: -60px;
}Then add the new css:
#header-left {
position: relative;
z-index: 1;
}
#header-right {
margin-right: 10px;
margin-top: -60px;
position: relative;
z-index: 10;
}You can just disable Header Featured Image. For that go to “Appearance => Theme Options => Header Featured Image Options” and in “Enable Featured Header Image”, you can select “Disable” and save changes.
Sakin
Keymaster@Keith: There is no option to remove website field in the comments. It’s from the WordPress Comment. For this you need to build child theme, for child theme check out http://catchthemes.com/blog/create-child-theme-wordpress/ and add the following code in child theme functions.php file:
/** * Altering Comment Form Fields * @uses comment_form_default_fields filter */ function adventurous_comment_form_fields( $fields ) { unset( $fields['url'] ); return $fields; } add_filter( 'comment_form_default_fields', 'adventurous_comment_form_fields' );Sakin
Keymaster@Lorkster: it’s loading Header Featured Image and the image URL is not found that is why it is showing like that. So, you need to go to “Appearance => Theme Options => Header Featured Image Options” and in “Enable Featured Header Image” option select “Disable” and save changes. Then also check in “Featured Header Image URL” there.
Sakin
KeymasterSorry I guess so that is why it’s pro version. There are lot of other premium features, you can check our theme instructions page at http://catchthemes.com/theme-instructions/catch-base-pro/
Sakin
Keymaster@IceCreamHunter: I cannot check in detail as you have all Cache with WP-Super-Cache plugin. So, you need to clear your cache from WP Super Cache plugin settings and check in.
Sakin
Keymaster@Felix: Sorry I don’t get it what you mean. The admin area depend on the WordPress Installation. If you have installed it in English then it will show in English.
Sakin
Keymaster@andriansah: Current font size of the title and description is 36px and 14px respectively. If you want larger then increase the font size in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
@media screen and (min-width: 960px) {
#site-title { font-size: 36px; }
#site-description { font-size: 14px; }
}Sakin
Keymaster@Michael: You cannot just so auto update from WordPress Dashboard for the pro version. You need to download zip file from your account at http://catchthemes.com/my-account/ and then follow the instructions mentioned in http://catchthemes.com/theme-instructions/catch-kathmandu-pro/
The easy option will be to use Catch Updater plugin http://catchthemes.com/wp-plugins/catch-updater/
-
AuthorPosts
