Reputation:
I have an existing application in epsocrm in which all pages are ready and that all pages have the company logo.
but I have an issue in the login page. the login page has the company logo exactly right side which I want to set in the center.
the example of my login page is given below
I am stuck with finding the solution of this problem. but failed to find
can anybody help me with this.
Upvotes: 0
Views: 134
Reputation: 3141
You just need css like this:
#login .logo-container {
margin: 10px auto;
}
Upvotes: 0