What is the updated css change need with Enfold latest release to increase the size of the Title, as well as increase the margin and the opn and close icons knowing that the icons are CSS based and not graphic. Ala the colors
I found this but it seems outdated.
.toggle_icon {
position: absolute;
width: 15px;
height: 15px;
border-style: solid;
border-width: 1px;
top: 25px;
left: 10px;
}
.js_active .toggler {
font-size: 50px Important;
padding: 35px 3px 35px 35px;
}
Hey dhuet!
For the accordion toggles? You should be able to change them with border width like so.
.vert_icon { border-left-width: 10px !important; }
.hor_icon { border-top-width: 10px !important; }
.toggle_icon { width: 25px !important; height: 25px !important; }
If that’s not correct then send us a link to your page and take a screenshot highlighting what your trying to do.
Best regards,
Elliott
Hey!
Please add following code to Quick CSS
.toggle_icon { top: 35px; }
.toggle_icon .vert_icon { height: 23px; left: 7px; top: 0; }
.toggle_icon .hor_icon { width: 23px; top: 7px; left: 0; }
.toggler { padding-left: 45px!important; }
Regards,
Yigit
Thanks!