No it’s not. You would change their order using CSS. Both grid and flex will work. What order would you like? I’m guessing you’d want the city first then the date. I’ll give you a couple of examples.
First let’s say you want them vertical but the city first you would just add:
.netsposts-acf-fields {
display: flex;
flex-direction: column-reverse;
}
If you want to use grid then it would be:
.netsposts-acf-fields {
display: grid;
grid-template-areas:
"span1"
"span2";
}
.netsposts-acf-fields span:first-of-type {
grid-area: span2;
}
.netsposts-acf-fields span:nth-of-type(2) {
grid-area: span1;
}
You are good! Neither flex nor grid were in my CSS tool kit. Now they are. I went with flex as it seems like browser support has been around a bit longer.
My test page has been updated to show what should be my final CSS and markup (I wrapped the titles in H3s).
Mighty thanks!
If I can help you out with proofreading and updating your documentation, give me a shout via my personal website (link in my WP profile). I’m much obliged.
I always appreciate proofreaders plus if you need css help don’t hesitate to ask. The reason I don’t mess with the order is because reordering is just as easy through CSS.