05/01/2019 at 10:50 am
#491005
Keymaster
@ Paula
There have not actually been any style changes, especially to the Profile template in quite some time and definitely not in any of the recent updates.
You do have quite a few custom CSS rules, perhaps, one of those was recently tweaked which removed centering that you might have added???
Any way try this:
@media only screen and (max-width: 600px) {
span.cn-image-style {
display: block !important;
}
span.cn-image-style span {
margin: 0 auto !important;
text-align: center !important;
display: block;
}
img.cn-image {
margin: 0 !important;
}
}
@media only screen and (min-device-width : 320px) and (max-device-width :480px) {
#cn-profile div.cn-entry span:first-of-type {
text-align: center;
}
}
You may or may not have to receive some you your existing CSS rules so these will be properly applied.