I’ve a category that I need to disguise, that is my code:
/*--------------------------------------------------------------
Title & Breadcrumb
--------------------------------------------------------------*/
.main-title-section-wrapper {
clear: each;
float: left;
margin: 0;
padding: 75px 0 90px;
width: 100%;
}
#header-wrapper .main-title-section-wrapper {
place: relative;
}
#header-wrapper.header-top-absolute .main-title-section-wrapper {
place: static;
}
.main-title-section {
float: left;
width: 100%;
margin: 0;
padding: 0;
place: relative;
pointer-events: none;
}
.main-title-section h1 {
font-size: calc(var(--DTFontSize_H1)/.95);
margin: 0 0 5px;
word-break: break-all;
font-weight: 700;
text-transform: preliminary;
line-height: 1.25em;
shade: #1a1a1a;
}
.breadcrumb {
clear: each;
float: left;
width: 100%;
margin: 0;
padding: 0;
font-size: inherit;
font-weight: 500;
}
.breadcrumb span:not(.present) {
show: inline-block;
margin: 0px 12px;
padding: 0;
}
.main-title-section-wrapper .breadcrumb-default-delimiter:earlier than {
content material: "";
background-color: currentColor;
show: inline-block;
peak: 14px;
opacity: 0.45;
place: relative;
prime: -1px;
vertical-align: center;
width: 1px;
-webkit-transform: rotate(20deg);
rework: rotate(20deg);
}
.main-title-section h1,
.breadcrumb {
hyphens: auto;
word-break: break-word;
word-wrap: break-word;
-moz-hyphens: auto;
-webkit-hyphens: auto;
-ms-hyphens: auto;
}
.main-title-section-wrapper>.main-title-section-bg,
.main-title-section-wrapper>.main-title-section-bg:after {
content material: "";
peak: 100% !vital;
overflow: hidden;
place: absolute;
prime: 0;
left: 0;
width: 100%;
z-index: -1;
pointer-events: none;
}
/*--------------------------------------------------------------
Default Colours
--------------------------------------------------------------*/
.breadcrumb {
shade: var(--DTBodyTxtColor);
}
.main-title-section h1 {
shade: var(--DTBlackColor);
}
.breadcrumb a {
shade: var(--DTLinkColor);
border-bottom: 2px strong clear;
}
.breadcrumb a:hover {
border-bottom-color: var(--DTPrimaryColor);
}
.breadcrumb span.present {
shade: var(--DTBodyTxtColor);
}
.main-title-section-wrapper>.main-title-section-bg:after {
background-color: rgba(var(--DTBlack_RGB), 0.05);
}
.main-title-section-wrapper.dark-bg-breadcrumb>.main-title-section-bg {
background-color: var(--DTBlackColor);
}
.dark-bg-breadcrumb .main-title-section h1,
.dark-bg-breadcrumb .breadcrumb a,
.dark-bg-breadcrumb .breadcrumb span.present,
.dark-bg-breadcrumb .breadcrumb span:not(.present) {
shade: var(--DTWhiteColor);
}
.breadcrumb a:hover,
.dark-bg-breadcrumb .breadcrumb a:hover {
shade: var(--DTLinkHoverColor);
}
/*--------------------------------------------------------------
Accents
--------------------------------------------------------------*/
/* Major Coloration */
.breadcrumb a:hover {
shade: var(--DTPrimaryColor);
}
/*--------------------------------------------------------------
Responsive
--------------------------------------------------------------*/
@media solely display and (min-width:1281px) {
.main-title-section-wrapper {
padding: 75px 0 90px;
}
}
@media solely display and (max-width: 1280px) {
.main-title-section-wrapper {
padding: 45px 0 50px;
}
}
/*----*****---- << Cell (Panorama) >> ----*****----*/
/* Frequent Types for the gadgets under 767px width */
@media solely display and (max-width: 767px) {
.main-title-section h1 {
font-size: 28px;
}
.main-title-section,
.main-title-section h1,
.breadcrumb {
text-align: heart;
}
}
/* Frequent Types for the gadgets under 479px width */
@media solely display and (max-width: 479px) {
.main-title-section h1 {
font-size: 24px;
}
}
I am making an attempt to cover most important title part wrapper, to date I used this:
.main-title-section-wrapper {
show: none ;
visibility: hidden ;
}
.main-title-section-wrapper {
place: absolute;
prime: -9999px;
left: -9999px; }
And it really works on chrome each on desktop that on cell, however safari on ios nonetheless exhibits that class
What ought to I do to cover this aspect additionally in safari?
I’ve tried numerous issues, however safari nonetheless exhibits these courses and that i’M unable to cover them on ios too