how can i remove page title on desktop view

admin2025-06-03  4

i have a problem with my woocommerce, I cant remove the page title in the product on desktop view. Anyone know what can i do ? thank you very much

store

i have a problem with my woocommerce, I cant remove the page title in the product on desktop view. Anyone know what can i do ? thank you very much

store https://kingsport.ro

Share Improve this question asked Feb 1, 2019 at 13:43 Burlac NicuBurlac Nicu 1
Add a comment  | 

2 Answers 2

Reset to default 1

Write the CSS into style.css file

@media only screen and (min-width: 768px) {
   .single-product .title-desc {
      display: none;
    }
}

.single-product CSS will only work on single product details. It will not create any issue on other pages.

You can use below css to remove the title on desktop view through the media query

.post-type-archive-product .page-title {
    display: none;
}
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1748951026a315093.html

最新回复(0)