July 10, 2019 at 7:19 am
#65252
Theme Horse Support Team
Keymaster
Hello @hansv-jensen
Did you paste the previous css code that we provided? It has a code that will only hide the date in top?
To make wide in top (info bar) and remove the buttons that are to the right of the post title please paste below CSS code into your child theme.
.info-bar .container {
max-width: 100%;
padding-left: 15px;
padding-right: 15px;
}
@media (max-width: 991px) {
.info-bar.infobar-links-on .container {
padding-right: 58px;
}
.info-bar .infobar-links .infobar-links-menu-toggle {
right: 15px;
}
}
.page-header,
.page-header .page-title {
overflow: inherit;
}
.page-header:before,
.page-header:after,
.page-header .page-title:before,
.page-header .page-title:after {
display: table;
content: "";
}
.page-header:after,
.page-header .page-title:after {
clear: both;
}
And for breadcrumb it is not possible to remove the link, for that you need to activate some breadcrumb plugins and hide the main breadcrumb from the theme option.
Thank you!