Forum Replies Created
-
AuthorPosts
-
Theme Horse Support Team
KeymasterTo make navigation menu center, please go to the Appearance > Customizer > Additional CSS and again paste the below custom css code to the end after the previous code:
@media (min-width: 992px) { .navbar-main .container { padding-left: 85px; } .main-navigation { width: 100%; } .main-navigation .navbar-nav { display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -ms-flex-pack: center; justify-content: center; } .main-navigation li { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: 100%; float: none; } .navbar-nav.d-lg-block { display: flex !important; } }
Thanks
Theme Horse Support Team
KeymasterPlease go to the Appearance > Customizer > Additional CSS and again paste below custom css code to remove the white rectangle area.
.site-main .type-page { background-color: transparent; box-shadow: none; -webkit-box-shadow: none; -moz-box-shadow: none; padding: 0; }
Thanks
Theme Horse Support Team
KeymasterHi @sanderedk,
To make the Site Title or Logo center then please go to the Appearance > Customizer > Additional CSS and paste below custom css code:
.navbar-head .navbar-head-row { -ms-flex-pack: center; justify-content: center; } .navbar-head .col-lg-4, .navbar-head .navbar-ad-section { -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; text-align: center }
Thanks
Theme Horse Support Team
KeymasterHi @georg,
Are you still facing the issue? We checked your site and found every thing is working fine.
Theme Horse Support Team
KeymasterYou don’t need to remove it by codes. If you don’t want to show breadcrumb then you can simply hide the breadcrumb by checking the ‘Hide Breadcrumbs’ option on Appearance > Customizer > Header.
Theme Horse Support Team
KeymasterSorry to say this is not the Page Title. It is the breadcrumb to access the parent pages easily. The Page Title will be shown on the content section on every pages and posts after you created. As you can see in this demo https://www.themehorse.com/preview/newscard/
If you still want to make h2 for it then you need to hire a developer for code customization.
thanks
Theme Horse Support Team
KeymasterTo show only title (show only end position of breadcrumb) please go to the Appearance > Customizer > Additional CSS and paste below custom css code:
#breadcrumb .trail-item:not(.trail-end) { display: none; }
Thanks
Theme Horse Support Team
KeymasterHi @i-dusan1998,
You are warm welcome to WordPress world and even thanks for Using our theme.
Yes you can edit the other pages beside homepage. As you said ‘everything you do on other pages also applied to the Home page’ but actually it won’t. May be you are confused with the process. There is a menu ‘Pages’ on the left sidebar of the admin dashboard. By clicking to that menu ‘Pages’ will get to see all the pages you created. Simply click on the desired page to edit individually.
Thanks.
Theme Horse Support Team
KeymasterHi @pelchat118,
Sorry there was a word misplaced in the code. We have updated the previous provided code. Now you can again copy those code. But the above Code will stop the script for Sidebar widgets and also for the Sticky Header Navigation.
So for the Better Solution Please paste the below custom CSS code in Appearance > Customize > Additional CSS to flow/scroll the page sidebar without stopping and for this process you don’t need to make a child theme.
.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; }
Thanks
Theme Horse Support Team
KeymasterHi @theodorparris,
We found you haven’t updated the theme yet. Please Update the Theme to fix the issue.
We have released the new version 1.1.4. We have updated the dropdown submenu of navigation menu. Now the Parent Menu have dropdown toggle to hide and show it’s Submenu.
Thanks
May 29, 2019 at 8:32 am in reply to: Removing the date and author from homepage post thumbnails #63782Theme Horse Support Team
KeymasterHi @sanderedk,
Please paste the below custom CSS code in Appearance > Customize > Additional CSS to hide the author and date from the thumbnails on the homepage.
.home .post-block .entry-meta:not(.category-meta) { display: none; } .home .post-block .entry-title, .home .featured-section .single-featured-post .post-block .entry-header .entry-title{ margin-bottom: 10px; }
Thanks
Theme Horse Support Team
KeymasterYes we have coded for latest post on blog in a responsive way. The number of entries per row gets varies form layout you choose to the screen sizes of devices. Like there will be 3 entries per row if you set the layout to ‘right sidebar‘, ‘left sidebar‘ or ‘no sidebar‘ but the entries per row will be 4 if you set the layout to ‘full width‘. and relatively the entries per row will get decreased by 1 for the medium screen size.
But beside these codes of grid for entries, if you want even more entries per row then we can provide you the custom css codes. So let us know your desired number of entries per row.
Theme Horse Support Team
KeymasterHi @theodorparris,
To hide the admin please paste the below custom CSS code in Appearance > Customize > Additional CSS.
.entry-meta .author, .entry-meta > div:after { display: none; } .entry-meta > div + .comments:before { content: "/"; }
Theme Horse Support Team
KeymasterHi @siwat2545,
We checked your site. Ya the navigation menu is not working well in your site. Some other 3rd party plugins might have affected the navigation menu. But still you can paste the below custom CSS code in Appearance > Customize > Additional CSS to make the navigation menu work well.
.collapse.in { display: block; }
Thanks
April 15, 2019 at 12:06 pm in reply to: Site identity – Site Title and Tagline after the logo #62443Theme Horse Support Team
KeymasterHi @sanderedk,
Due to the higher resolution in smaller devices like mobile and tables, the quality of regular image we upload gets low. To render the better quality of images you need to upload the images with dimension 2 times to 3 times bigger than a regular. For example your current logo width is ‘260px’ and height is ‘100px’ so you need to upload an image with width ‘780px’ and height ‘300px’.
after uploading the image please paste the below custom css code in Appearance > Customize > Additional CSS to set the image width to 260px on preview.
.navbar-brand { max-width: 260px; }
Thanks
-
AuthorPosts