Forum Replies Created
-
AuthorPosts
-
Mahesh
Participant@neobrainless: I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
https://wordpress.org/support/theme/rock-star/reviews/#new-post
Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated.
Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know.Regards,
MaheshMahesh
Participant@ve3eby: Please use border-color instead.
hr {
border-color: #ffa500;
height: 15px;
}Regards,
MaheshMahesh
Participant@solo_maxximus: Please post in your site url.
Regards,
MaheshMahesh
Participant@masterchess: Please post in your site url.
Regards,
MaheshMahesh
Participant@slee: This falls beyond theme support scope. I recommend you to hire a customizer.
Regards,
MaheshJuly 30, 2017 at 5:14 am in reply to: formatting / changing look and wording of category appearence #119814Mahesh
Participant@dsm: For this, you’ll need to create a child theme. You can find more on creating child theme HERE. Then, in you child theme’s
functions.phpadd the following codes.add_filter( 'get_the_archive_title', function ( $title ) { if( is_category() ) { $title = single_cat_title( '', false ); } return $title; });Regards,
MaheshMahesh
Participant@markusk: Are you using free version? This option is available in Pro version. I recommend you to upgrade to Pro version.
Regards,
MaheshMahesh
Participant@neobrainless: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following:
.site-logo img { max-height: 250px; } /* For Sticky */ .is-sticky .site-logo img { max-height: 100px; }Note: Please adjust the max-height as desired
Regards,
MaheshMahesh
Participant@7wuefv: I hope I was able to resolve your issue. Would you mind taking a few minutes to write a review for me please?
https://wordpress.org/support/theme/catch-base/reviews/#new-post
I’d really love to know what you think of my support. Your feedback is deeply valued as it will help potential clients read about your experience and also help me improve.
Thank you so much for your help!Regards,
MaheshMahesh
Participant@daniel98: Could you please check by switching the theme to WordPress core theme(TwentySeventeen) and check if the problem persists. If the problem occurs in core theme too, this is not a theme issue. Let me know further.
Regards,
MaheshMahesh
Participant@neobrainless: For that, you can use bigger size logo image.
@greyedevil75: You can find color options in Rock Star Pro version. I recommend you to upgrade to pro.Regards,
MaheshJuly 23, 2017 at 11:32 pm in reply to: Menu in the header ? inserting an image between main menu and secondary menu ? #119517Mahesh
Participant@infonet: I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
https://wordpress.org/support/theme/catch-box/reviews/#new-post
Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated.
Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know.Regards,
MaheshMahesh
Participant@catwingz: Go to Dashboard=> Appearance=> Customize=> Color Options=> Promotion Headline Color Option and change Background Color. If you have changed the color through Custom CSS, this won’t work as Custom CSS will override the option. First remove the previous Custom color from Custom CSS. Or Go to Dashboard=> Appearance=> Customize=> Custom CSS and add the following CSS.
aside#promotion-message { background-color: #493a1e; }Regards,
MaheshMahesh
Participant@7wuefv: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
#header-content { position: relative; } #sidebar-header-right { position: absolute; bottom: 30px; right: 0; }Regards,
MaheshMahesh
Participant@neobrainless: Go to Dashboard=> Appearance=> Customize=> Site Identity and upload your desired logo. Then make use to uncheck Display Site Title and Tagline option.
Regards,
MaheshJuly 21, 2017 at 7:27 am in reply to: Menu in the header ? inserting an image between main menu and secondary menu ? #119427Mahesh
Participant@infonet: For this, you’ll need to create child theme. You can find more about creating child theme HERE. Then in your child theme’s
functions.php, add the following code.function catchbox_main_header_image_position() { // Getting data from Theme Options $options = catchbox_get_options(); $position = $options['header_image_position']; if ( 'above' == $position ) { add_action( 'catchbox_child_after_primary_menu', 'catchbox_main_header_image', 10 ); } elseif ( 'below' == $position ) { add_action( 'catchbox_after_headercontent', 'catchbox_main_header_image', 10 ); } } function catchbox_header_menu() { //Getting Ready to load options data $options = catchbox_get_options(); $classes = "mobile-menu-anchor page-menu"; // Header Left Mobile Menu Anchor if ( has_nav_menu( 'primary' ) ) { $classes = "mobile-menu-anchor primary-menu"; } ?> <div class="menu-access-wrap mobile-header-menu clearfix"> <?php if ( empty ($options['disable_responsive'] ) ) { ?> <div id="mobile-header-left-menu" class="<?php echo $classes; ?>"> <?php $hide_mobile_menu_labels = isset( $options['hide_mobile_menu_labels'] ) ? $options['hide_mobile_menu_labels'] : 0; $label = isset( $options['primary_mobile_menu_label'] ) ? $options['primary_mobile_menu_label'] : esc_html__( 'Menu', 'catch-box-pro' ); $labelclass = "mobile-menu-text"; if ( !empty ( $hide_mobile_menu_labels ) ) { $labelclass = "screen-reader-text"; } ?> <a href="#mobile-header-left-nav" id="menu-toggle-primary" class="genericon genericon-menu"> <span class="<?php echo esc_attr( $labelclass ); ?>"><?php echo esc_attr( $label ); ?></span> </a> </div><!-- #mobile-header-left-menu --> <?php if ( !empty ($options['enable_sec_menu'] ) && has_nav_menu( 'secondary', 'catch-box-pro' ) ) : $menuclass = "mobile-enable"; ?> <div id="mobile-header-right-menu" class="mobile-menu-anchor secondary-menu"> <?php $hide_mobile_menu_labels = isset( $options['hide_mobile_menu_labels'] ) ? $options['hide_mobile_menu_labels'] : 0; $label = isset( $options['secondary_mobile_menu_label'] ) ? $options['secondary_mobile_menu_label'] : esc_html__( 'Secondary Menu', 'catch-box-pro' ); $labelclass = "mobile-menu-text"; if ( !empty ( $hide_mobile_menu_labels ) ) { $labelclass = "screen-reader-text"; } ?> <a href="#mobile-header-right-nav" id="menu-toggle-secondary" class="genericon genericon-menu"> <span class="<?php echo $labelclass; ?>"><?php echo esc_attr( $label ); ?></span> </a> </div><!-- #mobile-header-right-menu --> <?php else : $menuclass = "mobile-disable"; endif; ?> <?php } ?> <div id="site-header-menu-primary" class="site-header-menu"> <nav id="access" class="main-navigation menu-focus" role="navigation" aria-label="<?php esc_attr_e( 'Primary Menu', 'catch-box-pro' ); ?>"> <h3 class="screen-reader-text"><?php _e( 'Primary menu', 'catch-box-pro' ); ?></h3> <?php if ( has_nav_menu( 'primary', 'catch-box-pro' ) ) { $args = array( 'theme_location' => 'primary', 'container_class' => 'menu-header-container', 'items_wrap' => '<ul class="menu">%3$s</ul>' ); wp_nav_menu( $args ); } else { echo '<div class="menu-header-container">'; wp_page_menu( array( 'menu_class' => 'menu' ) ); echo '</div>'; } ?> </nav><!-- #access --> </div><!-- .site-header-menu --> <?php do_action( 'catchbox_child_after_primary_menu' ); ?> <?php if ( has_nav_menu( 'secondary' ) ) { ?> <div id="site-header-menu-secondary" class="site-header-menu"> <nav id="access-secondary" class="<?php echo $menuclass; ?>" role="navigation" aria-label="<?php esc_attr_e( 'Secondary Menu', 'catch-box-pro' ); ?>"> <h3 class="screen-reader-text"><?php _e( 'Secondary menu', 'catch-box-pro' ); ?></h3> <?php wp_nav_menu( array( 'theme_location' => 'secondary', 'container_class' => 'menu-secondary-container' ) ); ?> </nav><!-- #access-secondary --> </div><!-- .site-header-menu --> <?php } ?> </div><!-- .menu-access-wrap --> <?php } function catchbox_child_remove_header_action(){ remove_action( 'catchbox_before_headercontent', 'catchbox_main_header_image', 10 ); } add_action( 'init', 'catchbox_child_remove_header_action' );Note: Please make sure “Above Header Content” is selected in Header Image Location
Regards,
MaheshMahesh
Participant@dbatty: The magnifying glass seems to be hidden because you’ve changed the navigation bar background to white. The default color of search icon is also white so it blends in and difficult to see. Go to Dashboard=> Appearance=> Customize= Additional CSS and add the following CSS.
#search-toggle { color: #000; }We have made the theme as simple as possible so the user finds it easy to use and customize as necessary through Customizer. But if you go through coding and you are not much familiar with programming, well it will obviously be difficult. We do provide help and support for customization within theme support scope. But if you need further customization beyond theme support scope, I recommend you to hire a customizer.
Regards,
MaheshMahesh
Participant@bjbarker: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Footer Editor Options and edit Footer Right Content. Put the following text:
<a href="your_site_url">Site Name</a>Note: Please replace site url and site name with appropriate one.
Regards,
MaheshMahesh
Participant@dbatty: Please post in your site url. Let us know what difficulties are you facing with Catch Themes websites so that we can help you further.
Regards,
MaheshMahesh
Participant@ohlyanshweta: This support forum is only for theme and plugins by Catch Themes. Please contact the respective forum.
Regards,
Mahesh -
AuthorPosts
