NO BUG: Post elements with query has some glitch

In Post elemnt with query hase some glitch. Maybe my logic is wrong, I dont know.

I have an image (background) and only one title.
Title is in field.
If i change content aligment, nothing happen.
But if I change in onverlay the alignment it is doing what i want. The problem is in the field I didnt set “Overlay” option. (You can see in screenshots.)

Another problem:
I wanted add background to title when :hover. I can make it two method (I tried out all of)

  • In post field - Title Backgournd
  • In overlay inner backround.

The background color only working when i exactly point to the title, and not if i only point with cursor the image.




Hi,
Thanks so much for your report!

  1. You are using the metro layout, which is using the overlay to show the title over the images. Therefore, the behavior is correct.

  2. This behavior is also correct because the title or the link to it does not take up the entire area. However, you can force this with custom CSS if you want:

root .dynamic a:before {
  content: "";
  position: absolute;
  inset: 0;
}

Best regards,
timmse