Forum Replies Created
-
AuthorPosts
-
Sakin
KeymasterFor other those who have this issue. This issue will be fixed in new Version 0.1.2.3 which will be out soon. But for now you can just go to “Appearance => Theme Options => Excerpt / More Tag Settings” just remove arrow -> and save it. Then only make changes.
Sakin
Keymaster@dianzt: Thanks for reporting and begin patience. I have been able to find that the issue was is few server while for other it was working fine. I have fixed it in your site. Now you can change and work on the site.
Sakin
KeymasterYes Robert, The unhooking process is the WordPress hook. Thanks for using Catch Box Pro theme.
Sakin
Keymaster@TripleMoxy: can you try adding this CSS in your “Custom CSS” box in Theme Options panel and check with your iPad. Also send me your Site URL after you add in this css. So, I can check in with iPad.
/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) {
/* Styles */
#main #content {
margin: 0 38.6% 0 3%;
width: 58.4%;
}
#main #secondary {
float: right;
margin: 0 3% 0 0;
width: 32.5%;
}Sakin
Keymaster@Robertf: Yes. I didn’t realize the unhooking process and simply gave you the function. As I am supporting a lot of users. But I am happy that finally it worked for you.
PS. Are you writing plugin or review of theme.
Sakin
Keymaster@heeralc: For designing the background. Try to use repeatable background/texture/patterns. As the size changes as per the screen size and yes if you build really large background then it will create loading problem in Mobile devices.
Sakin
KeymasterHello Diana, Did you try disabling the plugin you used and check in. First try disabling the plugin and check it. If not then reply my email. You got mail.
Sakin
Keymaster@Raphael: Alt tag in Catch Box Pro theme Featured Image slider is the Title. So, just change the tile in the Featured Image Slider Options under Appearance Tab in your WordPress Dashboard.
Sakin
Keymaster@Raphael: Are you using Catch Box Pro Theme. Then simple use Featured Image Slider instead of Featured Post Slider and then don’t add anything in links. Just add Image, title and description.
Sakin
Keymaster@JamieHaden: Just add the following css in “Custom CSS” box in your Theme Options panel.
.site { background-color: #ffebbf; }Sakin
Keymaster@Donald.McIntyre: Just add the following css in “Custom CSS” box in your Theme Options panel.
.tag .page-header { display: none; }Sakin
Keymaster@subper: For responsive you need to control a lot. there is whole set of responsive css in responsive.css . So, you need to adjust each @media screen. So, I suggest you to take expert help either from Tweaky or http://jobs.wordpress.net/
Sakin
Keymaster@reuben26: Maybe your site got conflict with the plugins you are using it. So, try disabling the plugins and check it. I have also emailed you. You can reply me there.
Sakin
Keymaster@golfer300: I am bit confused with your question. The “Homepage Category Settings” you can choose single category or multiple categories. Use this option if you want to control your homepage to show posts from selective categories only. But if you want to show posts from all category then ignore this setting.
Sakin
Keymaster@skweekah: can you try adding in the following css in “Custom CSS” box in your theme options panel this will make the IE8 opacity to work;
#main-slider .entry-title a, #main-slider .entry-content, #slider-nav a { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; }But for width, I am confused why it is not working. I will check in if I fond the solution. Always use updated IE.
Sakin
KeymasterI have also emailed you the code.
Sakin
KeymasterHi Robert,
Sorry, I gave you wrong action to remove it. I didn’t realize it was for the child theme.
First you have to Unhook default Catch Box Pro functions by adding following functions in your child theme functions.
// Unhook default Catch Box Pro functions
function unhook_catchbox_functions() {
// Don’t forget the position number if the original function has one
remove_action( ‘catchbox_headercontent’, ‘catchbox_headerdetails’, 15 );
}
add_action( ‘init’, ‘unhook_catchbox_functions’ );Then you can add in your own function like below:
add_action( ‘catchbox_headercontent’, ‘catchbox_headerdetails_child’, 15 );
function catchbox_headerdetails_child() { ?>
<div class="logo-wrap clearfix">
<?php
// Check to see if the header image has been removed
$header_image = get_header_image();
if ( ! empty( $header_image ) ) : ?>
<div id="site-logo"><a href="<?php echo esc_url( home_url( ‘/’ ) ); ?>" title="<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>" rel="home">
<img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>" />
</a></div>
<?php endif; // end check for removed header image ?>
<hgroup id="site-details">
<h1 id="site-title"><a href="<?php echo esc_url( home_url( ‘/’ ) ); ?>" title="<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>" rel="home"><?php bloginfo( ‘name’ ); ?></a></h1>
<h2 id="site-description"><?php bloginfo( ‘description’ ); ?></h2>
</hgroup>
</div><!– .logo-wrap –>
<?php }Sakin
KeymasterTo all Catch Everest users, there is new version 0.1.2.2 available for download. You can just update your theme to fix this issue.
There is cache for the Featured Post Slider, so after you update in. Please change any value on Them Options panel which will manually clear the cache otherwise you have to wait 24 hours to be cleared automatically.
-
AuthorPosts
