Home Forums WordPress Themes – Premium Circumference Change default divider on pages Reply To: Change default divider on pages

#20413
Sushil Adhikari
Moderator

There are a couple ways, one requires actually editing a theme file, or using custom CSS to manage it (which would be the easier)

span.cir-dot {
     display: none !important;
}

The !important part forces the dot to disappear as an override to anything else.