Delete Title and Icone in Homepage

admin2025-06-04  1

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 badges
Add a comment  | 

2 Answers 2

Reset to default 1

First, 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.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749042950a315869.html

最新回复(0)