Move Date/Author under Title

Add this code to the Custom CSS field on the Settings tab of your Blog widget’s settings:

/* date - author */
[class*="card-content"]>div:nth-child(3) {
    order: 2;
}
/* excerpt */
[class*="card-content"]>div:nth-child(2) {
    order: 3;
}

Result:

1 Like