How can I center the copyright to be dead center? When I use the code: .bottom-footer-container .bottom-footer .copy_right { float:center; } It is almost center but too far over to the right...
Hello, Undo your old customization and Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .bottom-footer-container .bottom-footer .copy_right{ margin-right:300px; } @media only screen and (max-width: 960px) and (min-width: 768px){ .bottom-footer-container .bottom-footer .copy_right{ margin-right:250px; } } @media only screen and (max-width: 767px){ .bottom-footer-container .bottom-footer .copy_right{ margin-right:70px; } } @media only screen and (max-width: 480px){ .bottom-footer-container .bottom-footer .copy_right{ margin-right:20px; } } Adjust its value as per your requirements.