Thank you for your help, it is valuable) Today I studied what you sent)
I managed to solve the problem with the media query! I was confident that I was correctly specifying values for grid-area, but it turned out that I was making mistakes.
The only thing that is not quite clear is why in Webflow I specify a class, for example:
.aboutme_image-wrap
And in the browser with grid settings, the ID is used:
hi @pavelIT these are unique identifiers used internally by WF that are generated on compile time. As you can see your class name is presented. When you add to element your custom id it will be add as attribute to your DOM element. If you would like to know what is a difference between element and node you can watch eg. this video or find another source.
These generative identifiers (even as part of class name eg. my-class-name-456TY65bul9) is common practice in many frameworks or libraries. The underscore before this generated number means that is private. etc. etc
Don’t be worry about these as they aren’t important to you (they are important to WF) and you can’t do anything about these.
The final question has arisen to complete the whole picture.
Am I correct in understanding that if I want to use a media query for an element inside a grid block, in order for the styles to work, I need to use the identifier generated during compilation?
Explanation:
When I use the identifier assigned by WF in the code:
you are over-thinking it. As you can see in your first image (and I mentioned it already) you see class attribute with assigned class name about-image-wrap that take precedence. That’s it.
Sometime you need to check DOM and find WF class or attribute be able to do some custom magic but in 95% of the time you do not need it.