[UNIVERSITY] How to disable the auto Drop Cap

When creating course and event in University theme, you see the first letter of Course and Event content will be transformed to Dropcap automatically. It’s because the theme has been styled to decorated the first letter for more impression. However, some people users want to disable this function. The solution is so simple, please add this CSS to Theme Option > Custom CSS

.single-u_course .content-dropcap p:first-child:first-letter,
.single-u_event .content-dropcap p:first-child:first-letter {
all: inherit;
}