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 - 271 through 285 (of 5,207 total)
  • Author
    Posts
  • in reply to: Want to hide comment #87802

    Hi amitmozar,

    Please go to ‘Appearance > Customize > Additional CSS and Paste the below Custom CSS code.

    .post-wrap .entry-meta .comments {
    	display: none;
    }

    Thanks

    in reply to: PRO presales questions #87801

    Hi xeinar,

    We are sorry for the Late response because of some unavoidable circumstances. The reply for your question are as follows.
    – Yes The post Thumbnail this theme is designed to fit and covered as equal, similar and constant size.
    – Yes the text/character limit can be controlled through providing the Custom CSS code.
    – The Category will not be shown on the dropdown list until and unless you won’t assign to any post.
    – Our theme is Translation Ready so you can translate any word from the theme to any other language. We suggest you to use multilingual plugin.
    – The featured Image can be controlled and customized with providing the Custom CSS code. Right now you can hide and show the Featured Image on Post Single through ‘Appearance > Customize > NewsCard Setting’.
    – You cannot select the multiple categories but all you can do is, you can create a new category (example: ‘main stories’) then you can assign selective posts of different categories and then you can set to show on banner with that new created category.
    – yes you can set the no of posts to show on Banner Slider.

    in reply to: Braking News scroller on all pages #87796

    Hi anil.tsuuk,

    You need to customize the Theme Code to show the Top Stories Scroller on all pages. Follow the Process as instructed below.
    1- Go to Theme directory > header.php file on line no: 146. will find below line of code.

    <?php if ( ( is_front_page() || is_home() ) && $newscard_settings['newscard_top_stories_hide'] === 0 ) {

    replace the above code with the code provided below.

    <?php if ( $newscard_settings['newscard_top_stories_hide'] === 0 ) {

    2- Go to Theme directory > function.php file on line no: 210. will find below line of code.

    if ( ( is_front_page() || is_home() ) && $newscard_settings['newscard_top_stories_hide'] == 0 ) {

    replace the above code with the code provided below.

    if ( $newscard_settings['newscard_top_stories_hide'] == 0 ) {

    Note: Make Sure you make the Child Theme to customize the Theme Code so that the customize code won’t get lost while updating the Theme to a newer version in future.

    in reply to: Hide Category on Recent Post Widget not working #87795

    Hi Nitya Radhakrishnan,

    The TH Recent Post Widget doesn’t have any option to exclude the Category, Could you please explain us how are you trying to exclude the certain categories.

    Thanks

    in reply to: Date format #87794

    Hi Aylan Calletti,

    You need to customize the Theme code to change the Date Format. You can find the code for date on Directory > header.php file on line no: 41.

    Thanks

    in reply to: Shadow/Border around elements #86889

    Hi Håkon Vestnes,

    We have updated the previous code to remove all the White Background and border/box shadow on Elements. The Provided code was for to remove the White Background with Border/box shadows so the padding/spacing while no background color was also made to none. If you just wish to remove the border/box shadow then please removed the above code and paste the below Custom CSS code on the Additional CSS field as mention before.

    .post,
    .hentry,
    .product.type-product,
    .type-attachment,
    .site-content .content-area .widget.widget_media_gallery .gallery,
    .comments-area,
    .site-main .type-page,
    .bbpress .type-forum,
    .post-boxed,
    .featured-recent-post .recent-post-block,
    .widget {
    	box-shadow: none;
    	-webkit-box-shadow: none;
    	-moz-box-shadow: none;
    }

    Thanks

    in reply to: Categories and titles in posts #86885

    Hi Aylan Calletti,

    Sorry it cannot be done just through providing Custom CSS code. you really to hire a developer to customize the code for you. Also please make the Child theme before the customization so that you won’t loose the customized code when updating the theme to a newer version in future.

    Thanks

    in reply to: Top Bar Sticky #86884

    Hi Aylan Calletti,

    Sorry you need to hire a developer to customize the Code for you and please make the child theme before the customization so that you won’t loose the customized code when updating the Theme to a newer version in future.

    Thanks

    in reply to: Live preview editing shows nothing #86883

    Hi Carlos Giron Cords,

    Once check by deactivating the plugins one by one. Some plugins might have affected the Theme. also download the fresh copy of Theme again from the Login account. Some file might have been missed.

    Please let us know if the issue still persists.

    Thanks

    in reply to: Featured Posts – Number of Posts #86882

    Hi charles3,

    Sorry it cannot be done just through providing Custom CSS code. You really need to hire a developer to customize the Theme code for you.

    Thanks

    in reply to: Category color #86881

    Hi lukyeslu,

    You can find the assigned Categories list on ‘Appearance > Customize > Color > Category Color’ from where you can set colors.

    Let us know if you issue still persists.

    Thanks

    in reply to: Change Post Title to appearing above Featured Image #86540

    Hi silasodhiambo01,

    It cannot be don’t Just through Custom CSS code. You need to hire a developer to customize the Theme Code. Or you have to do it manually by hiding the above featured image from ‘Appearance > Customize > NewsCard Settings’ then hide the featured images of past and page. Then you can add the image on content page manually for all the post and pages.

    Thanks

    in reply to: Footer contents in one line #86539

    Hi,

    1 – First go to ‘Dashboard > Appearance > Menu’ then click to ‘screen option’ on top right corner of the page. then Check on the ‘Link Target option’. Now you will be able to Open link in a new tab on menu item which can be set through 2 ways

    • First Way: ‘Dashboard > Appearance > Menu’ (The Same Page Now)
      choose your registered menu which you want to edit then on the respective menu item dropdown option you will find ‘Open link in a new tab’ option.
    • Second Way: ‘Dashboard > Appearance > Customizer > Menu’
      and follow same process as above for first way.

    2 – You cannot edit the copyright text on Free Version. only Premium Version have access to edit the Copyright Text.

    3 – To remove the ‘Privacy Policy’ from the Copyright section. Go to ‘Dashboard > page’. Search ‘Privacy Policy’ from the list and then through edit/quick edit you can change the status to draft or you can move it to Trash.

    in reply to: Shadow/Border around elements #86537

    Hi Håkon Vestnes,

    Please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.

    .post,
    .hentry,
    .product.type-product,
    .type-attachment,
    .site-content .content-area .widget.widget_media_gallery .gallery,
    .comments-area,
    .site-main .type-page,
    .bbpress .type-forum,
    .post-boxed,
    .featured-recent-post .recent-post-block,
    .widget {
    	background-color: transparent;
    	box-shadow: none;
    	-webkit-box-shadow: none;
    	-moz-box-shadow: none;
    	padding: 0;
    }
    .single .post .post-featured-image.page-single-img-wrap,
    .single .hentry .post-featured-image.page-single-img-wrap,
    .page .type-page .post-featured-image.page-single-img-wrap {
    	margin-top: 0;
    	margin-left: 0;
    	margin-right: 0;
    }
    .post-boxed {
    	min-height: inherit;
    }
    .post-boxed .post-content {
    	padding-left: 0;
    	padding-right: 0;
    }
    .post-boxed.inlined {
    	padding: 0;
    }
    .newscard-widget-horizontal-vertical-posts .post-boxed.main-post .post-content,
    .newscard-widget-horizontal-vertical-posts .post-boxed.main-post.inlined .post-content{
    	padding-top: 0;
    }
    .newscard-widget-horizontal-vertical-posts .post-boxed.main-post .post-img-wrap {
    	margin-bottom: 16px;
    }
    @media (min-width: 992px) {
    	.widget-area .newscard-widget-horizontal-vertical-posts .post-boxed.main-post.inlined .post-content {
    		padding-top: 0;
    		padding-left: 0;
    		padding-right: 0;
    	}
    }
    @media (max-width: 767px) {
    	.newscard-widget-horizontal-vertical-posts .post-boxed.main-post.inlined .post-content {
    		padding-top: 0;
    		padding-left: 0;
    		padding-right: 0;
    	}
    }

    Thanks

    in reply to: Customize Social Icons – Interface Pro #86437

    The code for social icon render is at theme main folder /inc/structure/header-extensions.php on line no 222.

    Thanks

Viewing 15 posts - 271 through 285 (of 5,207 total)