How to order fields in Post element

Hi,

On this site https://helden-bureau.double-digits-growth.nl/ I have chosen a post element that shows 1 post in full width. Here I use 3 field. the first 1 is category, second is title and 3th is date and author. But how can I set them to show in this order? Because now the categorie is not visible and don’t know how that is.;

Hi Anushka,

you’ve applied strange negative margins to every field like this one:

image

Please remove every negative margin on the fields and use the following CSS to move the whole content wrapper above the image:

root .content-wrapper {
  margin-top: -120px;
}

If you’re at it anyway, you can remove all margins and use padding on the content-wrapper instead:

root .content-wrapper {
  margin-top: -120px;
  padding: 20px;
}

Best regards,
timmse

Hi Timmse,

Thanks for your help for both posts. Learning everyday more about Bricks :grinning: