admin管理员组文章数量:1130349
Hi, my website im doing now is nurulsazlinprubsntakaful
i want to delete home ---> Home as per pic i attach.
i read its about breadcrumbs. i also use inspect function in web browser.i get code like this from some discussion in other forum. .title-box { display: none; }
i put in additional css. still not solve.
im very new in wordpress. hope someone can help me...tq2.
other than that, i also awant to delete icon share.
Hi, my website im doing now is nurulsazlinprubsntakaful
i want to delete home ---> Home as per pic i attach.
i read its about breadcrumbs. i also use inspect function in web browser.i get code like this from some discussion in other forum. .title-box { display: none; }
i put in additional css. still not solve.
im very new in wordpress. hope someone can help me...tq2.
other than that, i also awant to delete icon share.
Share Improve this question asked Jan 4, 2019 at 4:02 Elit TechsElit Techs 52 bronze badges2 Answers
Reset to default 1First, check your theme's settings, if breadcrumbs can be turned on/off. If not, the following CSS will hide breadcrumbs:
nav.breadcrumbs {
display: none;
}
Put the above lines, into Customize -> Additional CSS, or into your theme's style.css.
To remove sharing buttons, use the following CSS:
div.share.js-share {
display: none;
}
I helped you hide the header in another question. Just curious how did you come up with .title-box? What you want to do is hit F12 and get the class or ID of the outer most element you want to hide.
So if we inspect your page, the breadcrumb has a div around it with the class breadcrumbs.
So we can add the following to your stylesheet, just like before, with the customizer, Appearance > Customize > Additional CSS.
.breadcrumbs {
display: none;
}
Also, if you are going to make a lot of edits, its better to make a child theme, then you can override the stylesheet without having to use the admin customizer.
Hi, my website im doing now is nurulsazlinprubsntakaful
i want to delete home ---> Home as per pic i attach.
i read its about breadcrumbs. i also use inspect function in web browser.i get code like this from some discussion in other forum. .title-box { display: none; }
i put in additional css. still not solve.
im very new in wordpress. hope someone can help me...tq2.
other than that, i also awant to delete icon share.
Hi, my website im doing now is nurulsazlinprubsntakaful
i want to delete home ---> Home as per pic i attach.
i read its about breadcrumbs. i also use inspect function in web browser.i get code like this from some discussion in other forum. .title-box { display: none; }
i put in additional css. still not solve.
im very new in wordpress. hope someone can help me...tq2.
other than that, i also awant to delete icon share.
Share Improve this question asked Jan 4, 2019 at 4:02 Elit TechsElit Techs 52 bronze badges2 Answers
Reset to default 1First, check your theme's settings, if breadcrumbs can be turned on/off. If not, the following CSS will hide breadcrumbs:
nav.breadcrumbs {
display: none;
}
Put the above lines, into Customize -> Additional CSS, or into your theme's style.css.
To remove sharing buttons, use the following CSS:
div.share.js-share {
display: none;
}
I helped you hide the header in another question. Just curious how did you come up with .title-box? What you want to do is hit F12 and get the class or ID of the outer most element you want to hide.
So if we inspect your page, the breadcrumb has a div around it with the class breadcrumbs.
So we can add the following to your stylesheet, just like before, with the customizer, Appearance > Customize > Additional CSS.
.breadcrumbs {
display: none;
}
Also, if you are going to make a lot of edits, its better to make a child theme, then you can override the stylesheet without having to use the admin customizer.
本文标签: Delete Title and Icone in Homepage
版权声明:本文标题:Delete Title and Icone in Homepage 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749042925a2307419.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论