Avatars not lining up

4.49K viewsWordPress
0

I’ve been having issues integrating anspress with my theme. I managed to find where to change the overall width, and fixed a clearfix issue for posts, but I’m still having an issue with avatars either stacking or layering on top of each other. Any suggestions on what to edit or add to get them where they are suppose to be?

Example: http://qpsychics.com/center/membership/anspress/question/testing-123/

 

Thanks!

Found the problem, needed height attribute in main.css
#anspress *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
height: auto;

}

Thanks for letting us know.

0

Look like clearfix are not being applied. Try once disabling CSS minify.

Thanks for the response. Can you give me a hint on how to do this with anspress?

Do you mean – define (‘WP_DEBUG’, false); – ? Because it wasn’t set to true.