Forum Replies Created

Viewing 20 posts - 4,521 through 4,540 (of 4,916 total)
  • Author
    Posts
  • Mahesh
    Participant

    Hi @Priscilla,

    Have you tried changing the theme to the WordPress core/default themes? Let me know if the problem persists.

    Regards,
    Mahesh

    in reply to: Menu gone; tags and categories no longer link to posts #84539
    Mahesh
    Participant

    Hi @dbevarly,

    From when is the issue occuring. Have you made any changes that is causing the issue? Does the problem occurs after changing to core themes too?
    Let us know, we’ll be able to help you further.

    Regards,
    Mahesh

    in reply to: Older Posts Link not working #84538
    Mahesh
    Participant

    Hi @Dan,

    Seems you’re using page template and running the queries to list out the post of certain categories. This won’t work like that. Since this is part of customizaion and is beyond theme support scope, you’ll need to hire a customizer.

    Regards,
    Mahesh

    in reply to: Social Icons #84534
    Mahesh
    Participant

    Hi @rybak66zuo,

    You’ll need to do some customization for it. First of all, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in child theme’s functions.php add the following codes.

    //
    // Move Social icons from search to header as in gridalicious
    //
    function clean_box_primary_menu() {
        $options  = clean_box_get_theme_options();
    	?>
        <div id="fixed-header-top">
            <div class="wrapper">
                <div id="mobile-primary-menu" class="mobile-menu-anchor fixed-primary-menu">
                    <a href="#mobile-primary-nav" id="primary-menu-anchor" class="genericon genericon-menu">
                        <span class="mobile-menu-text screen-reader-text">
                            <?php esc_html_e( 'Menu', 'clean-box' ); ?>
                        </span>
                    </a>
                </div><!-- #mobile-primary-menu -->
    
                <?php
                    $logo_alt = ( '' != $options['logo_alt_text'] ) ? $options['logo_alt_text'] : get_bloginfo( 'name', 'display' );
    
                    if ( isset( $options[ 'logo_icon' ] ) &&  $options[ 'logo_icon' ] != '' &&  !empty( $options[ 'logo_icon' ] ) ){
                         echo '<div id="logo-icon"><a href="' . esc_url( home_url( '/' ) ) . '" title="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" rel="home">
                            <img src="' . esc_url( $options['logo_icon'] ) . '" alt="' . esc_attr( $logo_alt ). '">
                        </a></div>';
                    }
                ?>
    
               <nav class="nav-primary search-enabled" role="navigation">
                    <h1 class="assistive-text"><?php _e( 'Primary Menu', 'clean-box' ); ?></h1>
                    <div class="screen-reader-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'clean-box' ); ?>"><?php _e( 'Skip to content', 'clean-box' ); ?></a></div>
                    <?php
                        if ( has_nav_menu( 'primary' ) ) {
                            $clean_box_primary_menu_args = array(
                                'theme_location'    => 'primary',
                                'menu_class'        => 'menu clean-box-nav-menu',
                                'container'         => false
                            );
                            wp_nav_menu( $clean_box_primary_menu_args );
                        }
                        else {
                            wp_page_menu( array( 'menu_class'  => 'page-menu-wrap' ) );
                        }
    
                        ?>
                </nav><!-- .nav-primary -->
    
                <div id="header-toggle">
                    <a href="#header-toggle-sidebar" class="genericon"><span class="header-toggle-text screen-reader-text"><?php _e( 'Show Header Sidebar Content', 'clean-box' ); ?></span></a>
                </div>
    
                <div id="header-toggle-sidebar" class="widget-area displaynone" role="complementary">
                    <?php if ( is_active_sidebar( 'header-toggle' ) ) { ?>
                        <?php dynamic_sidebar( 'header-toggle' ); ?>
                    <?php
                    }
                    else { ?>
                        <section class="widget widget_search" id="header-serach">
                            <?php get_search_form(); ?>
                        </section>
    
                        <?php
                    }
                    ?>
                </div><!-- #header-toggle-sidebar -->
            </div><!-- .wrapper -->
        </div><!-- #fixed-header-top -->
        <?php
    }
    
    function clean_box_site_branding() {
    		$options 			= clean_box_get_theme_options();
    
    		//Checking Logo
    		if ( '' != $options['logo'] && !$options['logo_disable'] ) {
    			$clean_box_site_logo = '
    			<div id="site-logo">
    				<a href="' . esc_url( home_url( '/' ) ) . '" title="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" rel="home">
    					<img src="' . esc_url( $options['logo'] ) . '" alt="' . esc_attr(  $options['logo_alt_text'] ). '">
    				</a>
    			</div><!-- #site-logo -->';
    		}
    		else {
    			$clean_box_site_logo = '';
    		}
    
    		$clean_box_header_text = '
    		<div id="site-header">
    			<h1 class="site-title"><a href="' . esc_url( home_url( '/' ) ) . '">' . esc_html( get_bloginfo( 'name' ) ) . '</a></h1>
    			<h2 class="site-description">' . esc_html( get_bloginfo( 'description' ) ) . '</h2>
    		</div><!-- #site-header -->';
    
    		$social_div = '';
    
    		if ( '' != ( $clean_box_social_icons = clean_box_get_social_icons() ) ) {
                $social_div = '<section class="widget widget_clean_box_social_icons" id="header-social-icons">
                    <div class="widget-wrap">'.
                        $clean_box_social_icons .'
                    </div>
                </section>';
    
            }
    
    		$text_color = get_header_textcolor();
    		if ( '' != $options['logo'] && !$options['logo_disable'] ) {
    			if ( ! $options['move_title_tagline'] && 'blank' != $text_color ) {
    				$clean_box_site_branding  = '<div id="site-branding" class="logo-left">';
    				$clean_box_site_branding .= $clean_box_site_logo;
    				$clean_box_site_branding .= $clean_box_header_text;
    			}
    			else {
    				$clean_box_site_branding  = '<div id="site-branding" class="logo-right">';
    				$clean_box_site_branding .= $clean_box_header_text;
    				$clean_box_site_branding .= $clean_box_site_logo;
    			}
    
    		}
    		else {
    			$clean_box_site_branding	= '<div id="site-branding">';
    			$clean_box_site_branding	.= $clean_box_header_text;
    		}
    
    		$clean_box_site_branding 	.= '</div><!-- #site-branding-->';
    		$clean_box_site_branding 	.= $social_div;
    
    		echo $clean_box_site_branding ;
    	}

    Then go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    #site-branding {
    		float: left;
    		display: inline-block;
    		width: auto;
    		text-align: left;
    	}
    	#header-social-icons {
    		float: right;
    		display: inline-block;
    	}
    @media screen and (max-width: 480px){
    	#site-branding, #header-social-icons {
    			float: none;
    			width: 100%;
    			text-align: center;
    		}
    	}
    
    .site .widget_clean_box_social_icons .genericon {
        background-color: #eee;
        border: 1px solid #ccc;
        border-radius: 20px;
        box-sizing: content-box;
        color: #404040;
        margin: 0 0 5px 5px;
        padding: 6px;
    }
    
    .site .widget_clean_box_social_icons .genericon:hover {
        border: none;
    }

    Regards,
    Mahesh

    in reply to: Featured Slider – Expiration? #84533
    Mahesh
    Participant

    Hi @sbratsch,

    You’ll need to hire a customizer for the above purpose.

    Regards,
    Mahesh

    in reply to: additional featured content #84530
    Mahesh
    Participant

    Hi @StoneColdHE

    In Catch Responsive, you can use upto 20 featured content box. Go to “Dashboard=> Appearance=> Customize=> Featured Content” and select Featured Page Content from Select Content Type. Then increase number in No of Featured Content to 12 and click save and refresh the page. Then you’ll see 12 drop downs to select pages then assign all 12 pages in the drop down and save again. Then check in your frontend.

    Let me know if it helped.

    Regards,
    Mahesh

    in reply to: Full width? #84527
    Mahesh
    Participant
    Mahesh
    Participant

    Hi @Priscilla,

    From when did the issue arise? Are you using any plugins? If so please deactivate all your plugins and check again. If the problem persists please change the theme to WordPress core themes (twenty-fifteen, twenty-sixteen). If problem persists, it is not a theme issue.

    Let me know if the problem persists.

    Regards,
    Mahesh

    in reply to: Tekst next to the logo #84524
    Mahesh
    Participant

    Hi @Ldekker,

    May be following style will help you. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    .site-title {
        display: inline-block;
        -webkit-transform: scale(1, 3.5);
        -moz-transform: scale(1, 3.5);
        transform: scale(1, 3.5);
        margin-top:25px;
      }
    .site-description {
        margin-top:45px;
    }
    @media screen and (max-width: 990px) {
      .site-description {
        margin-top:35px;
      }
    }
    @media screen and (max-width: 480px) {
      .site-description {
        margin-top:30px;
      }
    }

    Regards,
    Mahesh

    in reply to: Show posts in columns #84522
    Mahesh
    Participant

    Hi @Jos,

    I’m afraid it cannot be achieved with custom CSS only. Catch Adaptive Pro is using masonry for two columns display. I recommend you to hire a customizer of that. It is beyond theme support scope.

    Regards,
    Mahesh

    in reply to: Full width? #84521
    Mahesh
    Participant

    Hi @kerrigo,

    The pages in your site are already full-width. You’ve managed the remove the sidebars for the page and show the content with full-width.

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: feathured Image pop up #84520
    Mahesh
    Participant

    Hi @Shana Shanti,

    Yes, you’ll get that feature in Pro version for sure. It is built-in feature in Catch Evolution Pro version.

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @ibrahim,

    Please post in your site url.

    Regards,
    Mahesh

    in reply to: Show JUST post date, NOT also edited date? #84518
    Mahesh
    Participant

    Hi @americaontwowheels,

    Sorry for the late reply. Just checked your site, you are using Catch Base Pro 3.1. and in your theme’s style.css following lines are missing, that is why edited date is being displayed.

    .byline,
    .updated:not(.published) {
    	display: none;
    }
    
    .single .byline,
    .group-blog .byline {
    	display: inline;
    }

    Either add the above styles in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box or child theme’s style.css OR update your theme to version 3.2.

    Regards,
    Mahesh

    in reply to: Full width? #84443
    Mahesh
    Participant

    Hi @kerrigo,

    How are you doing? Just to notice you that Create 2.0 is released and is available for download, please update your copy too.

    Regards,
    Mahesh

    in reply to: Show posts in columns #84439
    Mahesh
    Participant

    Hi @Jos,

    You can make it two column with following CSS, if that is what you mean.

    #featured-content.layout-three .hentry{
    width: 50%;
    }
    #featured-content.layout-three .featured-content-image {
      text-align: center;
    }

    The image you’ve put seem to be broken. Could you please share an image again to make it more clear.

    Regards,
    Mahesh

    in reply to: change text from copyright #84438
    Mahesh
    Participant

    Hi @marga,

    Thank you for your appreciation.

    Regards,
    Mahesh

    in reply to: Spacing Padding Changes #84437
    Mahesh
    Participant

    Hi @Elyunn,

    Thank you for your appreciation.

    Regards,
    Mahesh

    in reply to: Featured Image size #84426
    Mahesh
    Participant

    Hi @[email protected],

    For the above, you have to create a child theme. You can find more details on creating child theme HERE. Then in child theme’s functions.php add the following codes.

    add_action( 'init' , 'catchresponsive_child_adjust_image_size');
    function catchresponsive_child_adjust_image_size() {
        remove_image_size( 'catchresponsive-square');
        add_image_size( 'catchresponsive-square', 300, 197, true);
    }

    Then go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    .excerpt-image-left .has-post-thumbnail .archive-post-wrap .entry-container {
        width: 60%;
    }
    
    .excerpt-image-left .has-post-thumbnail .archive-post-wrap .featured-image {
        max-width: 300px;
        width: 39%;
    }

    Regards,
    Mahesh

    in reply to: Slider Text #84414
    Mahesh
    Participant

    Hi @Torshi,

    For the above, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    #feature-slider .entry-container {
        opacity: 1;
    }

    Regards,
    Mahesh

Viewing 20 posts - 4,521 through 4,540 (of 4,916 total)