Why are the text link boxes with the class “terminbuchung” not aligning horizontally? How can I change that?
hi @Samuel1993 there are two issues with firs card in your Grid:
- top wrapper missing class
team_card_top
- you have 3
small-spacer
instead of 2 as in rest of cards (main issue)
Thank you. I adjusted accordingly but it is still not working. The text in the “text_team_member” is longer than in the other team cards. I thought that there must be way to stretch the content in the other team cards?
hi @Samuel1993 there is several issues related to your CSS.
.team_member_wrapper
should beflex
and notblock
.image_team_member img
should have something like following code
.image_team_member{
border-radius: .8rem;
width: 100%;
height: calc(260px + 6vw); /* this will dynamically change height based on viewport width. provided values are just for demonstration */
object-fit: cover;
}
this should fix all you issues to gave with this part.
BTW: images take ages to load.
12s responsiveness demo
External Media@Stan Thank you! How can change the loading time? I already compressed them to webp format…
Hi @Samuel1993 what do you mean ? Do you have issue with loading website? I can’t see any issue
I asked because you mentioned “BTW: images take ages to load.” How can I decrease that?
Hi @Samuel1993 when I was writing the reply these images loaded very slow. I do not experiance this issue.