Forum Replies Created
-
AuthorPosts
-
Theme Horse Support Team
KeymasterHi James Gross,
If you show the latest post for every sections then it will obviously shows the same post of every section. We have added the option to show the post through category. You can set different category to different sections to show different posts.
Thanks
September 16, 2020 at 11:05 am in reply to: How do remove author and date links from the posts and widgets? #81060Theme Horse Support Team
KeymasterOk if you want to remove the code as well then you have to remove the link from the code of every sections and widgets. As you know the code to remove the link but we recommend you to customize the after making the child theme so that you wont loose the customized code when updating the Theme to a newer Version in future.
Thanks
Theme Horse Support Team
KeymasterOk the code we provided was just for the Featured Image caption so the only text set on Caption field will be displayed. The description won’t be displayed by that code.
Anyways its great that your code worked but you have added an extra ‘}’ (curly braces) at the end. If you are going to add some additional Custom CSS code after it then the code won’t work because of that extra curly braces.
Thanks
Theme Horse Support Team
KeymasterHi sekyfoods,
Please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.
.widget .cat-links { display: none; } .widget_2_column_category .entry-header { margin-top: inherit; }
Thanks
Theme Horse Support Team
KeymasterPlease go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS.
.navigation-bar-top { display: none; } .navbar .navbar-collapse, .navbar .main-navigation .nav-menu { display: block; } .main-navigation ul li a, .main-navigation ul li ul li a, .main-navigation ul li ul li ul li a, .main-navigation ul li ul li ul li ul li a, .main-navigation ul li ul li ul li ul li ul li a { padding: 15px; } .navigation-bar .container { padding-left: 85px; }
Thanks
Theme Horse Support Team
KeymasterPlease go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.
.widget_media_image { text-align: center; }
Thanks
Theme Horse Support Team
KeymasterHi epiphany,
It’s Great that you solved the issue by yourself.
Please let us know you have any other queries regarding Themes.
Thanks
Theme Horse Support Team
KeymasterHi Roberto,
Did the code that you added worked? We think it doesn’t work.
Please remove those added code then on line no: 34. you will find the below code.
</figure><!-- .post-featured-image .page-single-img-wrap -->
Now replace the above mentioned code with the below provide code.
<figcaption class="featured-image-caption"><?php echo get_the_post_thumbnail_caption(get_the_ID()); ?></figcaption> </figure><!-- .post-featured-image .page-single-img-wrap -->
after replacing the code save the file and please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS Code.
.post-featured-image.page-single-img-wrap { overflow: hidden; } .post-featured-image.page-single-img-wrap .featured-image-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 50px 25px 15px; color: #ffffff; background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5)); } @media (max-width: 767px) { .post-featured-image.page-single-img-wrap .featured-image-caption { padding-left: 15px; padding-right: 15px; } }
Thanks
Theme Horse Support Team
KeymasterHi Roberto,
Yes you can change the Date Format through ‘Dashboard > Settings > General’. There you will find options for Date Format.
Thanks
Theme Horse Support Team
KeymasterHi Roberto,
Sorry we forgot to provide the code that should affect for the page too. It’s Great you find out the solution by yourself. Even We have updated the pervious code as well.
Thanks
September 13, 2020 at 1:36 pm in reply to: How do remove author and date links from the posts and widgets? #80990Theme Horse Support Team
KeymasterHi alex.casinov777,
To make the Date and Author not clickable then Please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.
.entry-meta .author a, .entry-meta .date a { pointer-events: none; cursor: default; }
Thanks
Theme Horse Support Team
KeymasterOk we figured out the issue. Please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.
@media (min-width: 992px) { .woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images { width: 38%; } .woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary { width: 58%; } }
Thanks
Theme Horse Support Team
Keymastercould you please share us your Site URL of the exact page in which you want to centered the image. So that you can provide you the appropriate code
Thanks
Theme Horse Support Team
KeymasterHi ahmed7adnan,
Disabling the responsiveness of the Theme is pretty tough thing to do. This Theme is developed with ‘Bootstrap Framework’, the most popular framework and it handles even the layouts and columns responsiveness by its core and rest are done with the Theme code.
Though you managed to disable the responsiveness and stuck on the mobile menu toggle then please share us your Site URL so that we can provide you the appropriate Custom code by checking the recent preview of your Site.Thanks
Theme Horse Support Team
KeymasterOk, you mean you want the full width along with sidebar layout.
Please go to the ‘Appearance > Customizer > Additional CSS’ and paste below custom css code:
@media (min-width: 1600px) { .post-template-default .site-content .container, .page-template-default:not(.woocommerce) .site-content .container { max-width: 1540px; } } @media (min-width: 1800px) { .post-template-default .site-content .container, .page-template-default:not(.woocommerce) .site-content .container { max-width: 1740px; } }
Thanks
-
AuthorPosts