Forum Replies Created
-
AuthorPosts
-
Theme Horse Support Team
KeymasterHi softlord,
Yes it is possible. Please go to ‘Appearance > Customizer > Site Identity’ then Check ‘ON’ the option ‘Site Branding Inline‘.
Thanks
Theme Horse Support Team
KeymasterHi samantha-bako,
We have used Font Awesome Icon in this theme. We have almost added most of common icons. We have found ‘esty’ icon on the Font Awesome Gallery but ‘ko-fi’ icon is not listed/available in Font Awesome so we have provided you the similar icon for it. Please go to ‘Appearance > Customize > Additional CSS’ and paste the below code.
.social-profiles ul li a[href*="etsy.com"]:hover { color: #E55400; } .social-profiles ul li a[href*="etsy.com"]:before { content: '\f2d7'; } .social-profiles ul li a[href*="ko-fi.com"]:hover { color: #29abdf; } .social-profiles ul li a[href*="ko-fi.com"]:before { content: '\f184'; }
Thanks
Theme Horse Support Team
KeymasterTheme Horse Support Team
KeymasterOk then you can add the background-color properties on the both above code.
Like:-.site-content .newscard-widget-recent-posts .nav-link { color: black; background-color: red; } .site-content .newscard-widget-recent-posts .nav-link:hover, .site-content .newscard-widget-recent-posts .nav-link.active { color: blue; background-color: green; }
Thanks
Theme Horse Support Team
KeymasterOk no problem,
To reduce the height please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.
@media (min-width: 576px) { .top-stories-bar, .top-stories-bar.top-stories-bar-with-thumbnail, .top-stories-bar.top-stories-bar-with-thumbnail .top-stories-lists, .top-stories-bar.top-stories-bar-with-thumbnail .top-stories-lists .row, .top-stories-bar.top-stories-bar-with-thumbnail .top-stories-lists .marquee, .top-stories-bar.top-stories-bar-with-thumbnail .top-stories-lists .marquee a { height: 50px; } .top-stories-bar .top-stories-label .top-stories-label-wrap { padding-top: 0; padding-bottom: 0; } .top-stories-bar .top-stories-label .label-txt { height: auto; } } @media (min-width: 576px) { .top-stories-bar, .top-stories-bar.top-stories-bar-with-thumbnail { height: auto; } } .top-stories-bar .top-stories-post-img { height: 35px; width: 35px; }
Here 50px is the height of the Top Stories Bar and 35px is used for the height and width of the posts featured image. If you wish to reduce even more then you can change those values with your desired one. (height and width of featured image should be the same value).
And Sorry for now you cannot make the Top Stories Bar sticky as beneath sticky Navigation. For it you have to hire a developer to customize the code for you.
Thanks
Theme Horse Support Team
KeymasterDo you mean same color for both?If it is then you can use the same color for both instead of different color.
Thanks
Theme Horse Support Team
KeymasterYes all your posts and pages are always safe but the settings of widgets and customizer only will be set as default. So you have to set up or migrate each and every settings of widgets and customizer only. You can migrate it easily via these two plugins.
Customizer Import/Export and Widget Import/Export Plugin
First activate the free version theme and upload/activate above plugins and you will find Export/Import option at the bottom of the Appearance > Customizer for Customizer’s data and settings and for Widget’s settings and data just go to Tools and you will find Widget Importer & Exporter option. Just export both settings then activate the pro theme and import it via under same option.If you can not import just let us know and we will help you to import those data and settings to a pro theme.
Thank you!
Theme Horse Support Team
Keymasterplease got to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.
.site-content .newscard-widget-recent-posts .nav-link { color: black; } .site-content .newscard-widget-recent-posts .nav-link:hover, .site-content .newscard-widget-recent-posts .nav-link.active { color: blue; }
Please change the above color to your desired one. For the above code ‘Black’ is used for inactive state and ‘Blue’ is used for active and hover state. If you know the Color Name then you can use the Color Name or you can use the hex color like #000000, #2e5f97 etc.
Theme Horse Support Team
KeymasterHi @venepress-web,
Could you explain us more the size of element that you required. We meant its about the font size or the paddings and spacing?
To make the sidebar first and the main content after then please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.
@media (max-width: 575px) { .site-content .content-area { -ms-flex-order: 1; order: 1; } }
Theme Horse Support Team
KeymasterHi @venepress-web,
Yes it is possible to reduce but have designed it in a grid layout way, so the layout might get disordered with respective to header and content width.
To reduce the width of Top stories section please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.
@media (min-width: 992px) { .top-stories-bar .container { max-width: 1140px; } }
Please replace the max-width to your desired one.
Thanks
Theme Horse Support Team
KeymasterSorry this will be the very new feature for the theme so you need to hire a developer to customize the code for you.
Thanks
Theme Horse Support Team
KeymasterSorry you cannot avoid the specific post on widgets or the specific category on latest post. for that you need to hire a developer to customize the code for you.
Thanks
Theme Horse Support Team
KeymasterHi @venepress-web,
To remove the Sidebar on specific page then Please go to the Post/page Editor of specific page/post then at the bottom of editor you will find settings/options for Sidebar Layout where you have to check ‘ON’ to ‘No Sidebar’.And yes it is possible to hide footer featured post section on the specific page but main thing is you need to know the exact page-Id to hide it. Every pages have its own Page Id mentioned on body tag. As you have solved to hide category on before topic using ‘Category Id’ and we hope you can get the Page Id as well.
So to remove the Footer Featured Posts section on specific page then go to ‘Appearance > Customize > Additional CSS’ paste the below Custom CSS code.
body.page-id-351 .site-footer .featured-stories { display: none; }
Here code sample is given for Page ID no: 351, Please replace the Id no: with yours Id. Like ‘page-id-12’, ‘page-id-18’ etc
If you have to hide on more than one page then the same code should be used again with the another Page Id no:
Likebody.page-id-351 .site-footer .featured-stories, body.page-id-355 .site-footer .featured-stories { display: none; }
Make sure you use comma (,) on every selector lines except for the last one. if you miss to use comma (,) on any single Selector Line then the whole code won’t work.
Thanks
Theme Horse Support Team
KeymasterHi @mohemn,
Yes you made the correct changes on header.php file. But it’s not working on other pages because to improve page loading, Script for the post scroll is not loaded on other pages so u need to load script for all the pages as well.
To load script on all the pages go the Theme directory/functions.php file. and go to line no: 166. there you will find below code.
if ( ( is_front_page() || is_home() ) && $newscard_settings['newscard_top_stories_hide'] == 0 ) {
In the given code again remove the same code like you removed on header.php file. ie;
( is_front_page() || is_home() ) &&
We recommended you to edit those code by creating a child theme so that your code won’t be lost while updating the theme to the new version.
Thanks
Theme Horse Support Team
KeymasterHi @the5krunner-com,
Yes you can redirect the link to any other else but you cannot set the different homepage for different screen views as you said you want to change the mobile home page and its not possible we guess. It means the contents will be same but the layout might be changed through responsiveness.
Thanks
-
AuthorPosts