Forum Replies Created
-
AuthorPosts
-
Theme Horse Support Team
Keymasterhi @dankar79,
We have used the most popular sticky Script for the sidebar. The script works just after tracking the instant height of the sidebar. Here the problem is that the external plugin/script that you used for the last three widget is not giving the height instantly. The timing of rendering those elements has affect the height so the sidebar is overlapped by the featured posts. If you refresh the browser again then its working perfectly. If you still want your site to work well with those plugin/scripts then we suggest you to make the sidebar regular rather than Sticky.
If you don’t want to make the sidebar sticky then Add below custom CSS code in Appearance > Customize > Additional CSS .
.widget-area .sticky-wrapper, .widget-area .sticky-wrapper.is-sticky { height: auto !important; } .widget-area .sticky-wrapper .sticky-sidebar, .widget-area .sticky-wrapper.is-sticky .sticky-sidebar { width: 100% !important; position: relative !important; top: auto !important; }
Theme Horse Support Team
Keymasterhi @aaron3,
Do you mean you don’t want to show the burger menu button in the navigation bar? Burger Menu button will help to show you the navigation menu lists through dropdown way.
If you hide that Burger Menu Button then your Navigation menu list wont be appear in any way out and you can’t be able to access to the pages of your sites easily.In Case if you want to hide the Burger Menu Button from navigation bar then Add below custom CSS code in Appearance > Customize > Additional CSS.
@media (max-width: 991px) { .navbar-toggler { display: none; } .navigation-bar-top > .container, .search-toggle { min-height: 46px; } }
Theme Horse Support Team
Keymasterhi @y,
Can you please provide us your Website URL so that we can figure out the actually problem.
Thanks
Theme Horse Support Team
Keymasterhi @y,
Thanks for helping us identifying the issue. We will fix the issue soon in the coming update. If you want of scroll the menu along with the site in the smaller screen views then go to Appearance > Customize > Additional CSS and paste the below custom CSS code.
@media (max-width: 991px) { .navbar .sticky-wrapper { padding-top: 0 !important; } .is-sticky .navigation-bar { position: initial !important; top: auto !important; right: auto; left: auto; } .navbar .is-sticky .navbar-collapse { overflow: visible; } .navbar .sticky-wrapper.is-sticky .navbar-collapse { max-height: inherit !important; } }
Thanks
Theme Horse Support Team
Keymasterhi @y,
There are two Hamburger menu button used in mobile version. One for the Top Bar Menu and Second for the Main Navigation Menu. Those Hamburger Menu Button comes under the Font Color Option.
- To change the color of Top Bar Menu(Hamburger Menu Button on mobile) go to Appearance > Customize > Colors > Font Colors and change the color of Top Bar.
- To change the color of Main Navigation Menu(Hamburger Menu Button on mobile) go to Appearance > Customize > Colors > Font Colors and change the color of Navigation.
Thanks
Theme Horse Support Team
Keymasterhi @taylor,
We don’t think it happens but anyways could you let us know what kind of new things that you added to your site so that the widgets gets disappeared?
thanks
Theme Horse Support Team
Keymasterhi @santiago
We have edited the previous code to remove ‘author’, ‘comments’ and ‘slash’ from the entire site. Please copy those code and paste to the location we mentioned before.
Thank You
Theme Horse Support Team
Keymasterhi @sau8chin66
Previously discussed issue was not belong to any of our themes. So Are u having the issue with the theme that we have developed. If yes let us know which theme of ours you are having problem with.
Thanks
Theme Horse Support Team
KeymasterHi @sanghm-pm,
To enable the ‘Front Page Content Section’ to add widgets, first you need to set your page to ‘Front Page Template’ which u can find at the right side under ‘Page attributes’. You can even find at the beginning of the video tutorial to set the front page template.
Thank you.
Theme Horse Support Team
KeymasterWe have respond about this topic under your new topic ‘Logo’, Please have a check.
Thank You.
Theme Horse Support Team
KeymasterTo make the logo section bigger, just go to Appearance > Customize > Additional CSS and paste the below custom CSS code to
@media (min-width: 992px) { .navbar-head .col-lg-5 { -ms-flex: 0 0 41.666667%; flex: 0 0 41.666667%; max-width: 41.666667%; } .navbar-head .navbar-ad-section { -ms-flex: 0 0 58.333333%; flex: 0 0 58.333333%; max-width: 58.333333%; } }
Theme Horse Support Team
KeymasterTo reduce spacing between the menu item just go to Appearance > Customize > Additional CSS and paste the below custom CSS code to
@media (min-width: 992px) { .main-navigation a { padding-left: 10px; padding-right: 10px; } .main-navigation > ul > li.menu-item-has-children > a, .main-navigation > ul > li.page_item_has_children > a { padding-right: 25px; } .main-navigation > ul > li.menu-item-has-children > a:after, .main-navigation > ul > li.page_item_has_children > a:after { right: 10px; } .search-toggle { padding-left: 10px; padding-right: 10px; } } @media (min-width: 1600px) { .main-navigation a { padding-left: 15px; padding-right: 15px; } .main-navigation > ul > li.menu-item-has-children > a, .main-navigation > ul > li.page_item_has_children > a { padding-right: 32px; } .main-navigation > ul > li.menu-item-has-children > a:after, .main-navigation > ul > li.page_item_has_children > a:after { right: 15px; } .search-toggle { padding-left: 15px; padding-right: 15px; } }
Theme Horse Support Team
KeymasterHi @omentemplar
Sorry those section are not for the widgets. It needs a code customization so you need to hire a developer as this a new feature to add in the theme.
Thank you!
November 15, 2017 at 6:03 am in reply to: Remove "…" (three dots) after featured title on slider and #54059Theme Horse Support Team
KeymasterHi embruna,
To remove the three … line from slider please add below custom css
.featured-text .featured-content { display: none; }
To remove the three … lines from recent work it needs a bit of code customization. Go to theme folder > inc -> widgets -> ambition-widgets.php on line no 763 to 770 you will find below code
<?php $excerpt = get_the_excerpt(); if(strlen($excerpt) >130){ $excerpt_length = substr($excerpt, 0 , 130); echo $excerpt_length . '...'; } else{ echo $excerpt; }?><code>replace it with</code><?php the_excerpt(); ?>
The same customization is code should be made again while updating to new version because if you customize the code in the theme then while updating to new version all your customized code will be lost. So better make a child theme and make exactly same copy of parent theme widgets and customize the code to be safe from data/ customized code loss while updating to new version.
Also to modify the background title image go to dashboard -> appearance -> customize -> ambition theme options -> page title background image.
Thank you!
Theme Horse Support Team
KeymasterYou welcome facundo6991
Thank you!
-
AuthorPosts