I need to align in the middle these 3 images, one next the other… under “Carta Servizi Salute”..I really don’t know how to do it
Hey claudioaddobbatim2r2,
Please try the following in Quick CSS under Enfold->General Styling:
.page-id-619 .avia-builder-el-24 .av_textblock_section {
text-align:center;
}
Best regards,
Rikard
hey Rikard – i thought he likes to have the one on the left – the next to the center and the last do the right – then
give a custom class to the text-block element like : images-in-line
do this to quick css:
.images-in-line img:nth-child(2) {
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.images-in-line img:nth-child(3) {
position: relative;
float: right;
}