Center author photo (again)

Hey there,

I did use those quick CSS fixes to center my author photo on my website www.adsventure.de:

unfortunately since the last update, they don’t work anymore. Could you help me out with a new fix for that?

that would be awesome! Many thanks!

This is an automated message to notify you that your thread was posted in the wrong forum, and it has been moved to the correct place. A member of our team will be happy to reply just as soon as your thread is up.

For support, all questions are to be posted in the Themeco category or by clicking + Support. The other categories are for discussion with fellow Apex members. Please keep this in mind in the future. Thank-you!

How support works.

Hi There,

It is not center on mobile because the following CSS override your custom CSS that makes it center in mobile:
.x-author-box .avatar { margin-left: 10px; margin-right: 30px; margin-bottom: 0px; width: auto; }

Please try to update this part:
@media (max-width: 480px){ .x-author-box .avatar { display: block; float: none !important; margin-bottom: 16px !important; margin: 0 auto; } }
To this:
@media (max-width: 480px){ .x-author-box .avatar { display: block; float: none !important; margin: 0 auto 16px !important; } }

Hope this helps.

1 Like

Great, many thanks!! :slight_smile:

You’re most welcome!
We’re just glad we were able to help you out.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.