I use a livefyre comments box on my website. My website is designed for a max-width of 980px. I set the livefyre comments box also to a max-width of 980px, but can't seem to get it to horizontally center on the page. I have tried using margin:0 auto; and text-align:center; I set up a test page with inline CSS code at http://www.romancestuck.com/test-pages/livefyre-center.htm
Thanks for your help!
URL based question are not suggested, post code next time,
for current solution,add this
Problem is that your container (
#livefyre-comments
in this case ) has no width set, so it takes the entire available width of view-port.....set a width and then setting margin will center the thing because logically speaking, you can not center something which is 100% wide!! :)