badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Theme Horse Support Team

Forum Replies Created

Viewing 15 posts - 481 through 495 (of 5,207 total)
  • Author
    Posts
  • in reply to: How to increase post featured image size #80320

    Sorry to say but the Theme is designed in such a way that Featured Image sizes on certain sections are different. If we made the featured Image sizes to same ratio on all the sections then the Design Layout of the Theme will completely messed up. Like in the Header Featured Banner section, the Featured Images size on Slider and Featured Posts are made different to match the Designed Grid Layout. Also you will find different featured sizes ratio for widgets, widgets main post will have landscape ration size and other sub listed posts are of smaller square thumbnail.

    Thanks

    Hi john,

    Please go to “Theme Directory > template-parts > content.php”

    1- On line no: 52 you will find the below code.

    <?php if ( !has_post_format( 'quote' ) ) { // for not format quote ?>

    replace it with below code.

    <?php if ( !has_post_format( 'quote' ) && !is_single() ) { // for not format quote ?>

    2- Remove the below mentioned code from line no: 38 to 40.

    <div class="entry-meta category-meta">
    	<div class="cat-links"><?php echo esc_html( newscard_post_categories_display() ); ?></div>
    </div><!-- .entry-meta -->

    3- Add the below Custom Code on line no: 16.

    <?php if ( !has_post_format( 'quote' ) && is_single() ) { // for not format quote ?>
    	<div class="entry-meta category-meta">
    		<div class="cat-links"><?php echo esc_html( newscard_post_categories_display() ); ?></div>
    	</div><!-- .entry-meta -->
    	<header class="entry-header">
    		<?php if ( is_singular() ) {
    			the_title( '<h1 class="entry-title">', '</h1>' );
    		} else {
    			the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
    		} ?>
    
    		<?php if ( 'post' === get_post_type() ) {
    			if ( !has_post_format( 'link' ) ){ // for not format link ?>
    			<div class="entry-meta">
    				<?php newscard_posted_on(); ?>
    				<?php if ( comments_open() && get_comments_number() ) { ?>
    					<div class="comments">
    						<?php comments_popup_link( __('No Comments', 'newscard'), __('1 Comment', 'newscard'), __('% Comments', 'newscard'), '', __('Comments Off', 'newscard') ); ?>
    					</div><!-- .comments -->
    				<?php } ?>
    			</div><!-- .entry-meta -->
    			<?php }
    		} ?>
    	</header>
    <?php } ?>

    NOTE: Please make the Child Theme before customizing the Theme Code so that you won’t loose the Customized Code when updating the Theme to a New Version in future.

    Thanks

    in reply to: How to increase post featured image size #80316

    Hi John,

    Sorry we missed your query, As you asked for the size of 700px X 800px so we have created a code for the 7:8 ratio size for Featured Image. Please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.

    .site-main .post-wrap .post-col {
    	-ms-flex: 0 0 100%;
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .site-main .post-wrap .post-col .post-img-wrap:before,
    .site-main .page-single-img-wrap:before {
    	padding-top: calc(87% + 2px);
    }

    Thanks

    in reply to: Change the first slider #80308

    Hi lucasmulhoa,

    Sorry you need to hire a developer to customize the code for you as we recommend you to make the child theme first then customize the code so that you won’t loose the customized code when updating the Theme to New Version in future.

    Thanks

    in reply to: widget Footer Featured Posts #80302

    Ok your new question have been responded by our Support Theme.

    Thanks

    in reply to: Theme error #80301

    Hi agiullio,

    Some files might have been missed. Please download and use the Fresh Theme File again.

    Please let us know if your are still facing the issue.

    Thanks

    in reply to: Remove top in widget TH horizontal / vertical post #80300

    To work on all screen size including tablet and mobile, we have made minor changes on the code. Please copy the previous code and paste in again on ‘Additional CSS’ field as mentioned before.

    Thanks

    in reply to: Search New Theme for Blog #80265

    Hi satineeraj13,

    Thank you for your concern. You can try our latest most popular Theme NewsCard Pro. This Theme is a multipurpose Theme which can be fit for simple blog Content as well.

    Thanks

    in reply to: Remove top in widget TH horizontal / vertical post #80225

    Ok the previous code was just to hide the first main thumbnail so the first post also got hide with it.

    Now please remove the previous code and paste the below Custom CSS code.

    .site-content .widget-area .newscard-widget-horizontal-vertical-posts .first-col,
    .site-content .widget-area .newscard-widget-horizontal-vertical-posts .second-col,
    .site-content .widget-area .newscard-widget-horizontal-vertical-posts .second-col .col-md-6.post-col {
    	-ms-flex: 0 0 100%;
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .site-content .widget-area .newscard-widget-horizontal-vertical-posts .post-boxed.main-post {
    	padding: 15px 15px 0;
    }
    .site-content .widget-area .newscard-widget-horizontal-vertical-posts .post-boxed.main-post .post-img-wrap {
    	float: left;
    	margin-right: 15px;
    	margin-bottom: 15px;
    	height: 80px;
    	width: 80px;
    }
    .site-content .widget-area .newscard-widget-horizontal-vertical-posts .post-boxed.main-post .post-content {
    	padding: 0 0 5px;
    	display: block;
    	overflow: hidden;
    }
    .site-content .widget-area .newscard-widget-horizontal-vertical-posts .post-boxed.main-post .entry-meta.category-meta {
    	margin-bottom: 3px;
    }
    .site-content .widget-area .newscard-widget-horizontal-vertical-posts .post-boxed.main-post .entry-title {
    	font-size: 19px;
    	margin-bottom: 5px;
    }
    .site-content .widget-area .newscard-widget-horizontal-vertical-posts .post-boxed.main-post .entry-content {
    	display: none;
    }
    @media (min-width: 1400px) {
    	.site-content .widget-area .newscard-widget-horizontal-vertical-posts .post-boxed.main-post .post-img-wrap {
    		height: 90px;
    		width: 90px;
    	}
    }
    @media (min-width: 1600px) {
    	.site-content .widget-area .newscard-widget-horizontal-vertical-posts .post-boxed.main-post .post-img-wrap {
    		height: 100px;
    		width: 100px;
    	}
    }
    @media (min-width: 1800px) {
    	.site-content .widget-area .newscard-widget-horizontal-vertical-posts .post-boxed.main-post .post-img-wrap {
    		height: 105px;
    		width: 105px;
    	}
    }

    Thanks

    in reply to: Style Menu #80200

    Hi xanhron,

    If you are familiar with the CSS then you can add your Additional Custom CSS code on ‘Appearance > Customize > Additional CSS’.

    Thanks

    in reply to: widget Footer Featured Posts #80198

    Ok, In the Free Version the Header Featured Slider have limitation of 5 posts only, so the ‘Opinion’ posts might the older post because the Featured Slider will either Show the Latest posts or the Post by Category. To show the ‘Opinion’ Posts you have to set the option ‘Show Posts from Category’ and choose ‘Opinion’ from dropdown list. on ‘Appearance > Customize > Banner > Featured Slider’.

    If you have any confusion again then please let us know and share us your Site URL so that you can check post contents on Featured Slider as well.

    Thanks

    in reply to: Remove top in widget TH horizontal / vertical post #80195

    Hi robertotiburcio03,

    Do you mean to remove the top main thumbnail parts only, if so please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.

    .site-content .widget-area .newscard-widget-horizontal-vertical-posts .first-col {
    	display: none;
    }

    Thanks

    in reply to: widget Footer Featured Posts #80159

    The categories set in sidebar section is ‘Opinion’ and the category set for Header Featured Slider is ‘Travel’ or the ‘Latest Section’. Now if you do not want to show the Opinion post on Featured Slider then you have to create and assign a category which do not include Opinion’s posts Like you can create a new category name as ‘Main Stories’ for the Featured Slider and then you can assign the desired post for it but not the Opinion posts.

    Thanks

    in reply to: How do I delete layout? #80158

    Hi Daniel Lacatus,

    To remove the ‘Post Navigation’, please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS Code.

    .navigation.post-navigation {
    	display: none;
    }

    Thanks

    in reply to: widget Footer Featured Posts #80069

    Hi Robertotiburcio03,

    Could you please explain us more about your first query, we didn’t about the category not showing in Widget Featured Slider means.

    and yes you can also show the ‘Footer Featured Posts’ only on Front Page Template, To do so please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.

    .site-footer .featured-stories {
    	display: none;
    }
    body.page-template-front-page-template .site-footer .featured-stories {
    	display: block;
    }

    Thanks

Viewing 15 posts - 481 through 495 (of 5,207 total)