How can I hide a code in Wordpress Mobile View

teknotrom

New member
XNullUser
Joined
Feb 17, 2022
Messages
4
Reaction score
0
Points
1
NullCash
14
Hello, How can I hide a code in Mobile view? for example I don't want breadcrumbs on mobile view.
Post automatically merged:

can you give a code example?
 

cookie monster

Active member
Elite
XNullUser
Joined
Feb 23, 2022
Messages
120
Reaction score
102
Points
43
NullCash
98
try this ic your css or where ever they need to be
HTML:
@media only screen and (max-width: 480px) {
.site-breadcrumbs {
    display: none;
}
}
 
Top