I have replaced my style.css with the one from a fresh download of a sela theme. I changed what you said, yet still no changes.
As for my additional css it is this, so I
body {
color: #2c3e50;
background: #ecf0f1;
}
.half {
float: left;
width: 100%;
padding: 0 0em;
}
/* Acordeon styles */
.tab {
position: relative;
margin-bottom: 1px;
width: 100%;
color: #fff;
overflow: hidden;
}
.tab input {
position: absolute;
opacity: 0;
z-index: -1;
}
.tab label {
position: relative;
display: block;
padding: 0 0 0 1em;
background: #f0606e;
font-weight: bold;
line-height: 3;
cursor: pointer;
}
.tab-content {
max-height: 0;
overflow: hidden;
background: #ffffff;
padding-left: 0.5em;
font-weight: bold;
-webkit-transition: max-height .35s;
-o-transition: max-height .35s;
transition: max-height .35s;
}
/* :checked */
.tab input:checked ~ .tab-content {
max-height: 100vh;
}
/* Icon */
.tab label::after {
position: absolute;
right: 0;
top: 0;
display: block;
width: 3em;
height: 3em;
line-height: 3;
text-align: center;
-webkit-transition: all .35s;
-o-transition: all .35s;
transition: all .35s;
}
.tab input[type=checkbox] + label::after {
content: "+";
}
.tab input[type=radio] + label::after {
content: "\25BC";
}
.tab input[type=checkbox]:checked + label::after {
transform: rotate(315deg);
}
.tab input[type=radio]:checked + label::after {
transform: rotateX(180deg);
}
I even removed my additional css, yet the change in style.css doesn’t work. ??
I have a print screen after adding the original sela style.css, adding your change and removing additional css, but I don’t know how to add it.