Forum Replies Created

Viewing 20 posts - 4,561 through 4,580 (of 4,916 total)
  • Author
    Posts
  • in reply to: Full width? #84287
    Mahesh
    Participant

    Hi @kerrigo,

    Thank you for your appreciation.
    The theme is almost done and is in the testing phase. It is currently in our top priority. We’ll be pushing the update to WordPress.org repository by tomorrow.
    Thank you for you patience.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Control width of columns in Featured Content #84285
    Mahesh
    Participant

    Hi @husker,

    Sorry for the late reply.
    The above code is working fine, and the featured content are aligning horizontally to one another. The problem with above code is that it is always making the featured content’s size 25%:50%:25% in all sizes, so I’ve made a little change. Please replace the code with below.

    .featured-content-image {
        text-align: center;
    }
    @media screen and (min-width: 991px) { 
        #featured-content.layout-three .hentry {
            width: 25%;
        }
      
        #featured-content.layout-three .hentry:nth-child(3n+2) {
            width: 50%;
        }
    }
    
    @media screen and (max-width: 990px) { 
        #featured-content.layout-three .hentry {
            width: 100%;
        }
    }

    Note: Your content seem to have fixed width so I’ve made the width featured content to full-width for display max-width: 990px.

    Regards,
    Mahesh

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

    Hi @Jos,

    Do you mean to display featured image in 1 column full width? If so, then go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

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

    Regards,
    Mahesh

    in reply to: 1 column not 3 columns for gallery #84217
    Mahesh
    Participant

    Hi @wwwalker,

    Just checked your website and your current theme version is 4.2.1. it seems you have managed it the issue with Custom CSS. The issue has been fixed in the latest update Catch Box 4.3 . Please update to the latest release.

    Regards,
    Mahesh

    in reply to: Display tags in each excerpt on top page #84216
    Mahesh
    Participant

    Hi @Kenta,

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

    /**
     * Adding tags in header_meta
     *
     */
    function adventurous_header_meta() {
    
    	$date = sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a>',
    		esc_url( get_permalink() ),
    		esc_attr( get_the_time() ),
    		esc_attr( get_the_date( 'c' ) ),
    		esc_html( get_the_date() )
    	);
    
    	$author = sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>',
    		esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
    		esc_attr( sprintf( __( 'View all posts by %s', 'adventurous' ), get_the_author() ) ),
    		get_the_author()
    	);
    
    	// Translators: used between list items, there is a space after the comma.
    	$tag_list = get_the_tag_list( '', __( ', ', 'adventurous' ) );
    
    	// Translators: 1 is category, 2 is tag, 3 is the date and 4 is the author's name.
    	if ( $tag_list ) {
    		$utility_text = __( '<span class="on-date">Posted on %1$s</span><span class="by-author"> by %2$s</span> | </span><span class="in-tag">Tagged %3$s</span>', 'adventurous' );
    	}else{
    		// Translators: 1 is category, 2 is tag, 3 is the date and 4 is the author's name.
    		$utility_text = __( '<span class="on-date">Posted on %1$s</span><span class="by-author"> by %2$s</span>', 'adventurous' );
    	}
    
    	printf(
    		$utility_text,
    		$date,
    		$author,
    		$tag_list
    	);
    }

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @pal_coche,

    This has been an issue with the WordPress’s customizer. When a child theme used, it doesn’t inherit the settings from the parent theme and vice versa. The issue you are facing now is the same. Now what can be done is, create a child theme and activate it, you’ll get all your settings back and if you want to switch to the parent theme then you need to move all the settings that were changed in the child theme one by one by setting it again in the parent theme manually. There hasn’t been any alternative for this yet.

    Regards,
    Mahesh

    in reply to: CSS #84214
    Mahesh
    Participant

    Hi @Anton,

    For zoom on hover in slider, go to “Dashoboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    #feature-slider .slider-image a img {
      transition: all .3s ease-in-out; 
    }
    
    #feature-slider .slider-image a:hover img {
      transform: scale(1.1);   
    }
    
    #feature-slider .slider-image {
      max-height: 513px;
      overflow: hidden;
    }

    Regards,
    Mahesh

    in reply to: Cannot install Simple Catch Pro version 3.3 #84209
    Mahesh
    Participant

    Hi @rflores,

    We’ll contact you via email.

    Regards,
    Mahesh

    in reply to: String "Continue reading" is not translated #84208
    Mahesh
    Participant

    Hi @jie66,

    Hope you are good. Just to let you know that Catch Box 4.3 is live now. Please update to the latest version. “Continue Reading” translation is fixed now.

    Regards.
    Mahesh

    in reply to: Need help with slider images on Home page #84204
    Mahesh
    Participant

    Hi @Loudmind,

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

    #feature-slider .slider-image img{
        width: 100%;
    }

    Regards,
    Mahesh

    in reply to: Site not responsive. #84202
    Mahesh
    Participant

    Hi @Sharon,

    No, we didn’t mean you to ignore any test of your website. We just tested the same with the demo and showed you the result.
    Yes, it would be better to have your web url, please post it in.

    Regards,
    Mahesh

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

    Hi @Shana Shanti,

    Have you made any changes to the code? The feature is not available in free version, only in pro version. Even if the feature was removed in upgrade (which is not), featured image should go away for the previous posts as well. In your site, previous post is showing featured image but latter is not.

    Let me know if I can help you further.

    Regards,
    Mahesh

    in reply to: download version 3.6 Responsive Pro #84074
    Mahesh
    Participant

    Hi @Jos,

    We are not sure about that.
    They do provide support.
    Please visit the link: https://wordpress.org/support/plugin/page-builder-sandwich

    in reply to: Hide latest posts from front page #84072
    Mahesh
    Participant

    Hi Carina,

    Hope you’ve followed the instruction as in the site for creating child theme. And where have you uploaded the Child theme folder in the server? It should be in “Your site’s WordPress Installation Folder/wp-content/themes/”. What do you see in the Themes pages? Is there any mentioning of broken themes or something like that?

    Regards,
    Mahesh

    in reply to: download version 3.6 Responsive Pro #84071
    Mahesh
    Participant

    Hi @Jos,

    That’s great, looking forward for it.
    Let us know if you have any problem.

    Regards,
    Mahesh

    in reply to: download version 3.6 Responsive Pro #84064
    Mahesh
    Participant

    Hi @Jos,

    Okay, I’ve forwarded the issue to our technical team and they will deal with it. We’ll be contact you if any problem.

    Regards,
    Mahesh

    in reply to: Hide latest posts from front page #84062
    Mahesh
    Participant

    Hi @Carina,

    In the earlier reply, you’ve mentioned you’ve made child theme. If you haven’t created child theme, create a child theme. You can find more details on creating child theme HERE. After creating child theme, you’ll see it displayed in “Dashboard=> Appearance=> Themes”.

    Regards,
    Mahesh

    in reply to: All sliders link to only one page #84052
    Mahesh
    Participant

    Hi @Raielene,

    Thank you for your appreciation.

    Regards,
    Mahesh

    in reply to: Cannot install Simple Catch Pro version 3.3 #84051
    Mahesh
    Participant

    Hi @rflores,

    We’ll need to check the code and need the admin access for it. We will soon contact you through email.

    Regards,
    Mahesh

    in reply to: Make slider hover more distinct? #84050
    Mahesh
    Participant

    Hi @Raielene,

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

    .featured-slider a:hover img.wp-post-image {
      opacity: 0.7;
    }

    Note: Please change value for opacity as per required. Default value is 0.9.

    Regards,
    Mahesh

Viewing 20 posts - 4,561 through 4,580 (of 4,916 total)