Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@ccdsmith: Can you send me your site URL. Have you customize the site or added any cahce plugin. Then you might need to clear the cache from your cache plugin settings.
Sakin
Keymaster@chris: I cannot view your screenshot as it look like it’s in your computer. You need to update in your site or any image uploader site and then add the Image URL here.
Sakin
Keymaster@mark: Sorry I am bit confused about your request. I see that you have slider image of size 976×313. So, what you want to do with that. Can you explain it please. OR share screenshot of what you want.
Sakin
Keymaster@panselli: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
#header { background: none #fff; } #main h2.entry-title a:hover, ul li a:hover, ol li a:hover, #sidebar ul li a:hover, #sidebar ol li a:hover, #footer a:hover { color: #555; }Sakin
Keymaster@EirikurVa: Try using W3 Total Cache plugin.
Sakin
Keymaster@bossydsmom: There is clear steps of instruction mention in our theme instruction page at http://catchthemes.com/theme-instructions/catch-box-pro . Your blog content and works are not stored in Theme. It is stored in your database. So, you will not lose anything is just deleting and adding new themes.
Your purchase come with Support Forum access and if needed email support as well. I will email you if you need email support. Support Ticket needs support membership.
Sakin
Keymaster@chris: You can go to “Appearance => Theme Options => Homepage Settings => Homepage Featured Content Options” and then check on “Disable Homepage Featured Content” and save it.
Sakin
Keymaster@mark: For this you can simply go to “Appearance => Theme Options => Footer Options => Footer Editor” and add the code as per you need. The sample code is as below.
<div class="copyright">[footer-image] Copyright © [the-year] <span>[site-link]</span>. All Right Reserved. <a title="Privacy Policy" href="http://catchthemes.com/privacy-policy/">Privacy Policy</a> | <a title="Site Map" href="Site Map URL">Site Map</a></div><div class="powered-by">Powered by: [wp-link] | Theme: [theme-link]</div>Sakin
Keymaster@marcie1980: I see that you are using Simple Catch Free version where the front page blog layout is in Excerpt Mode. So, it will display the Featured Image, Post Title and the excerpt content. It will not display the full formatted content. See the demo page http://catchthemes.com/demo/simplecatch.
The option will be like to upgrade to pro version where you have option to use Full Content mode from Theme Option panel. Or you can customize the free theme by building child theme and the copy content.php file and change
the_excerpt()tothe_content()and adjust the css as per your need.Sakin
Keymaster@EirikurVa: what’s your password protected URL and the password and then I can test in. Also did you keep the WordPress page password or through plugins? Sometime, it might be cache issues. So, if you have installed any cache plugin then please clear the cache and check in.
Sakin
Keymaster@chris: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box to remove the faint border lines along the slides.
.featured-slider .slides { box-shadow: none; }You can add the following CSS in “Appearance => Theme Options => Custom CSS” box to add a slightly lighter colored background like in the catch box theme
#main-slider { background-color: #555; padding: 10px; }Sakin
Keymaster@Joaozinho: Sorry typo mistake in Border spelling. I have correct the css.
The following CSS will just remove one black border:
#branding ul.menu li { border-left: none; } #branding ul.menu li:first-child { border-right: 1px solid #1b4266; } #branding ul.menu li:last-child { border-right: none; }But if you want to remove both the border then you can add the following:
#branding ul.menu li { border: none; }Sakin
Keymaster@Joaozinho: I don’t see the above custom css in your site. Did you add in? If yes then try clearing your cache from WP Super Cache plugin settings.
Sakin
Keymaster@Joaozinho: As per my knowledge it’s database connection issue not the plugin issue. Hope it will not happen again.
Sakin
Keymaster@Joaozinho: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
#branding ul.menu li { border-left: none; } #branding ul.menu li:first-child { border-right: 1px solid #1b4266; } #branding ul.menu li:last-child { border-right: none; }Sakin
Keymaster@Joaozinho: If you want to edit header.php files then you need to build child theme and edit the header.php file in your child theme. Also most of functions can be changed by adding the functions in your child theme functions.php file.
If you are ok with the theme then you don’t necessary need to update. To update the changed files, I recommend it to test first in your test server and work on changes.
Sakin
Keymaster@chris: Sorry Catch Everest Pro theme doesn’t have option to add video in the slider. For this you need to build child theme and edit the code. Better hire customizer for this http://catchthemes.com/hire-customizer/
Sakin
Keymaster@Joaozinho: Can you try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
#branding ul.menu { text-align: center; } #branding ul.menu li { display: inline-block; float: none; }Sakin
Keymaster@Joaozinho: It’s showing error mostly connection database issue with plugin such as WordPress SEO by Yoast, WP Minify and few functions. It’s the connection between the site and database issue. Wrong information from Bluehost.
About the update. If you haven’t customize the core theme files then the update is simple. So, we recommend to change the theme by Custom CSS box and theme options panel and for core theme function build child theme and edit it.
Sakin
Keymaster@corinnecollins.com: Yes you can do that but it’s bit complicated. You need to create functions.php file in your child theme and add the following code:
<?php /** * Catch Box Child Theme functions and definitions * */ // Unhook Catch Box Theme Functions function unhook_catchbox_functions() { remove_action( 'catchbox_after_headercontent', 'catchbox_header_menu', 10 ); } add_action( 'init', 'unhook_catchbox_functions' ); add_action( 'catchbox_before_headercontent', 'catchbox_header_menu', 5 );Then add the following CSS in your child theme style.css file.
#header-content { clear: both; } -
AuthorPosts
