Forum Replies Created

Viewing 20 posts - 1,701 through 1,720 (of 14,506 total)
  • Author
    Posts
  • in reply to: header image size #79207
    Sakin
    Keymaster

    @priya: Please post in your site URL and then I can check in.

    in reply to: Featured Images of Posts not Adapting to Size #79206
    Sakin
    Keymaster

    @defuentes: Thanks for your appreciation 🙂

    in reply to: Featured Images of Posts not Adapting to Size #79187
    Sakin
    Keymaster

    @defuentes: But if you still want to use that old table in that post, then you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .postid-296 .site-main td {
        display: block;
        float: left;
        width: 33.33%;
    }
    in reply to: Featured Images of Posts not Adapting to Size #79186
    Sakin
    Keymaster

    @defuentes: I see that you have added in series of image in table which is not good method. I see that you have Jetpack plugin installed. So, you can use “Tiled Gallery” module. Just go to “Jetpack” settings and then activate “Tiled Gallery” and insert those images as gallery.

    See this https://jetpack.me/support/tiled-galleries/ and example at https://en.blog.wordpress.com/2012/10/04/tiled-image-galleries/

    in reply to: Polylang: translating Featured Content title and description #79184
    Sakin
    Keymaster

    @Pius: Nice one. I love the images in your site. Thanks for your appreciation and I am so happy that it’s been fixed.

    If you like my support and Full Frame theme, then please support by providing your valuable review at https://wordpress.org/support/view/theme-reviews/full-frame?rate=5#postform

    Thanks 🙂

    in reply to: Header Right Siderbar #79180
    Sakin
    Keymaster

    @Nadae: Sorry I don’t get it what you mean. Can you explain in reference with your site URL and also is possible add in screenshot url explaining the issue.

    in reply to: widget area problem #79179
    Sakin
    Keymaster

    @stecu: You shouldn’t edit any core theme files directly. You shouldn’t add/edit any files inside catch-resposnive theme directory. As all these files will be reverted back to original when you update or upgrade the theme.

    So, if you want to add extra sidebar and add it below featured content. Then you need to build child theme. You can download sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/ and then add the following code in your child theme functions.php file

    /**
     * Register extra sidebars
     *
     * @since Catch Responsive
     */
    function catchresponsive_child_widgets_init() {
    
    	//under featured content sidebar
    	register_sidebar( array(
    		'name' => __( 'Under Featured Content Sidebar', 'catch-responsive' ),
    		'id' => 'sidebar-under-featured-content',
    		'before_widget' => '<section id="%1$s" class="widget %2$s"><div class="widget-wrap">',
    		'after_widget'  => '</div><!-- .widget-wrap --></section><!-- .widget -->',
    		'before_title'  => '<h4 class="widget-title">',
    		'after_title'   => '</h4>',
    		'description'	=> __( 'This is the extra sidebar under Featured Content', 'catchresponsive' ),
    	) );	
    
    }
    add_action( 'widgets_init', 'catchresponsive_child_widgets_init' );
    
    /**
     * Add extra sidebar below Featurd Content 
     */
    add_action( 'catchresponsive_before_content', 'catchbox_under_featured_content_sidebar', 50 ); 
    function catchbox_under_featured_content_sidebar() {
    	if ( is_active_sidebar( 'sidebar-under-featured-content' ) ) : 
    		?>
    		<div id="sidebar-under-featured-content" class="widget-area">
    			<div class="wrapper">
    				<?php dynamic_sidebar( 'sidebar-under-featured-content' ); ?>
    			</div>
    		</div> <!-- #sidebar-under-featured-content -->
    	<?php endif;
    }
    in reply to: change Pictures in the Slider #79177
    Sakin
    Keymaster

    @Stuli: In Adventurous Free theme, you can change that demo image slider with “Featured Post Slider” or “Featured Category Slider”. You can follow instructions at http://catchthemes.com/theme-instructions/adventurous/. Also you can check screencast at http://catchthemes.com/blog/videos-blog/video-series-adding-featured-post-slider/

    in reply to: Navigate between posts in the same category #79176
    Sakin
    Keymaster

    @Danielski09877: Sorry there is no option for this in theme. You might need to search for plugin to do this. You can search for plugin at https://wordpress.org/plugins/

    in reply to: adjust the margins #79173
    Sakin
    Keymaster

    @Mattias: Sorry I don’t understand your question. Can you explain in reference with your site URL.

    in reply to: Border content page #79172
    Sakin
    Keymaster

    @Mattias: Please post in your site URL and let me know where you want to add border and which color.

    in reply to: Remove Render-Blocking JavaScript #79168
    Sakin
    Keymaster

    @heywatchit: That issue will be there in all the theme that you use. As we need to follow the WordPress Guideline to enqueue scripts and css. This falls beyond theme issue.

    You can even try default WordPress theme by WordPress.org itself. like
    https://wp-themes.com/twentyfifteen

    This should be solved using plugin like W3 Total Cache or WP Rocket Plugin and work on minify js and css. But this is complicated and you might need to hire expert to do that.

    in reply to: Change Font color in Header widget #79164
    Sakin
    Keymaster

    @Cathy: You can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #sidebar-header .widget, 
    #sidebar-header .widget-title, 
    #sidebar-header .widget a { color: #000; }
    in reply to: Slider image sizing #79163
    Sakin
    Keymaster

    @guy.shachar76: For which theme and site. If you want to upload 1500px width then your site width need to be 1500px as well.

    in reply to: Polylang: translating Featured Content title and description #79129
    Sakin
    Keymaster

    @Pius: I need that wpml-config.xml and your child theme folder name to debug it. You cannot just paste in the code. As this edit will clear the format. When I check in the code above, the in problem with closing " in the following css. So, replace the following code
    <key name="theme_mods_full-frame-pro-child“>
    with the following code:
    <key name="theme_mods_full-frame-pro-child">

    Also your child theme folder name should be full-frame-pro-child

    in reply to: Show slider text even on small displays #79123
    Sakin
    Keymaster

    @Debbie: I check in your custom css and you already have css for font size as well. Great work

    in reply to: Continue reading adds extra characters #79120
    Sakin
    Keymaster

    @ShayC: For Simple Catch theme, you can go to “Appearance => Theme Options => Excerpt / More Tag Settings” and change “More Tag Text”.

    in reply to: Error #79115
    Sakin
    Keymaster

    @AiD: Can you let me know the version of Simple Catch Pro theme that you are using. Looks like you are using old version of Simple Catch Pro theme. Latest version in 3.2.1

    in reply to: Breadcrumb #79113
    Sakin
    Keymaster

    @LynJon: Thanks a lot 🙂

    in reply to: comments #79091
    Sakin
    Keymaster

    @lehii17: looks like you are talking about Comment Settings. For that, just go to “Settings => Discussions” and in “Other comment settings” where you will see option to select “Comments should be displayed with the comments at the top of each page”. Just change that and Save changes.

Viewing 20 posts - 1,701 through 1,720 (of 14,506 total)